summaryrefslogtreecommitdiff
path: root/tests/c++_console/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2016-02-15 09:32:38 +0800
committerruki <[email protected]>2016-02-15 19:10:28 +0800
commitb78baf22ac0e25d2b18add81d42f733e0cd35620 (patch)
treed950c7c372227e300c8bfd780eea6371a4633692 /tests/c++_console/src/main.cpp
parent202ceb6b071c7a1e95482dcb8bb7b48f24cd5bdc (diff)
add some tests
Diffstat (limited to 'tests/c++_console/src/main.cpp')
-rwxr-xr-xtests/c++_console/src/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/c++_console/src/main.cpp b/tests/c++_console/src/main.cpp
new file mode 100755
index 000000000..db2361659
--- /dev/null
+++ b/tests/c++_console/src/main.cpp
@@ -0,0 +1,9 @@
+#include <iostream>
+
+using namespace std;
+
+int main(int argc, char** argv)
+{
+ cout << "hello world!" << endl;
+ return 0;
+}