Skip to content

hello-lang/cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C++

Simple "Hello, World!" program in C++.

Dependencies

  • Linux/Unix: cmake, g++
  • Windows: MSVC

Build and execute

Linux

mkdir build && cd build
cmake ..
make

MacOS

same as Linux, except instead of using

cmake ..

use

cmake -G "yourXCodeGoesHere" ..

Windows

same as Linux, except instead of using

cmake ..

use

cmake -G "yourMSVCGoesHere" ..

Manual run

inside build dir

./src/hello_world

Releases

No releases published

Packages

No packages published