Initial submit

This commit is contained in:
Torsten Schulz
2017-07-18 23:49:40 +02:00
commit 071d70ecf6
14 changed files with 233 additions and 0 deletions

9
main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "Hello World!" << endl;
return 0;
}