Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 493 Bytes

File metadata and controls

27 lines (17 loc) · 493 Bytes

HelloWorld

The classic first application "Hello, World!" with Win32 WriteConsole function.

Sources

HelloWorld.cpp

CMakeLists.txt

Generate and build

To build this project, open "Console" and type following lines:

mkdir build && cd build
cmake .. 
start HelloWorld.sln

Select "HelloWorld" project and type Ctrl+F5 to build and run it.

Output

Hello, World!