Initial Commit

This commit is contained in:
Kirigaya Kazuto 2017-03-22 11:24:38 +08:00
commit 2abeaf332e
2 changed files with 15 additions and 0 deletions

6
.gitignore vendored Normal file
View File

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

9
main.cpp Normal file
View File

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