Initial Commit

master
Kirigaya Kazuto 2017-05-27 16:32:37 +08:00
commit ac5e8bef81
2 changed files with 16 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
bin/
obj
*.cbp
*.depend
*.layout
*.txt

9
main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}