initial commit

This commit is contained in:
Robert 2020-11-05 14:21:59 +01:00
commit d6c71c84b8
4 changed files with 24 additions and 0 deletions

8
src/main.cpp Normal file
View file

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