initial commit

This commit is contained in:
Phuntsok Drak-pa
2018-03-20 21:41:46 +01:00
commit 785633a33c
5 changed files with 39 additions and 0 deletions

6
src/main.cc Normal file
View File

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