Initial Commit

master
Kirigaya Kazuto 2017-05-28 20:25:28 +08:00
commit fdc673b047
2 changed files with 15 additions and 0 deletions

6
.gitignore vendored Normal file
View File

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

9
main.cpp Normal file
View File

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