commit 2abeaf332ec6b664ccec5778b0943e8dd03072c9 Author: Kiritow <1362050620@qq.com> Date: Wed Mar 22 11:24:38 2017 +0800 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..47defec --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +*.cbp +*.layout +*.depend + diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..b4392ec --- /dev/null +++ b/main.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main() +{ + cout << "Hello world!" << endl; + return 0; +}