Changed to C++

This commit is contained in:
Gulum
2017-10-22 13:56:12 +02:00
parent 2de4a18bc7
commit 7b0de6eb1a
56 changed files with 45 additions and 1477 deletions

11
src/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int main( int argc, char *argv[] )
{
cout << "Hello World!" << '\n';
cin.get();
return 0;
}