Added hello world application.

This commit is contained in:
Chibici Tiberiu 2018-02-01 15:22:12 +02:00
parent 8d10fa9fb1
commit 739d414327
1 changed files with 7 additions and 0 deletions

7
hello.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main()
{
std::cout << "Hello world!" << std::endl;
return 0;
}