XCode C++ (Part 1)

Hello, World!


This is the logo owned by Apple Inc. for Xcode. Taken from the picture's app bundle. Fair use

Building a terminal application using C++ and XCode

How I built hello world on my M1 MacBook Air

main.cpp
         
//
//  main.cpp
//  helloWorld
//
//  Created by Neil Haddley on 3/8/23.
//

#include <iostream>

int main(int argc, const char * argv[]) {
    // insert code here...
    std::cout << "Hello, World!\n";
    return 0;
}

new Command Line Tool project

Product Name is helloWorld
Language is C++

Select Source Code location

General project settings

Build and Run

Program ended

Show Build Folder in Finder

Build Folder

Debug Build

Unix Executable File