Initial commit

This commit is contained in:
Thomas Klaehn
2019-10-27 13:04:07 +01:00
commit cc2432fc27
4 changed files with 109 additions and 0 deletions

7
src/main.cc Normal file
View File

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