From 379675ca870210abdde87db7dfd989855d337cd3 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 18 Jun 2015 16:37:58 +0800 Subject: add templates --- xmake/templates/c++/console/project/src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 xmake/templates/c++/console/project/src/main.cpp (limited to 'xmake/templates/c++/console/project/src/main.cpp') diff --git a/xmake/templates/c++/console/project/src/main.cpp b/xmake/templates/c++/console/project/src/main.cpp new file mode 100644 index 000000000..db2361659 --- /dev/null +++ b/xmake/templates/c++/console/project/src/main.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main(int argc, char** argv) +{ + cout << "hello world!" << endl; + return 0; +} -- cgit v1.3.1