Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 508 Bytes

File metadata and controls

30 lines (19 loc) · 508 Bytes

HelloWorld

The classic first application 'Hello World'.

Sourc# Sources

Build and run with Visual Studio Poject

Open HelloWorld.csproj

Build and run with CMake

To build this project, open "Terminal" 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!