diff options
| author | ruki <[email protected]> | 2016-02-15 09:32:38 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-02-15 19:10:28 +0800 |
| commit | b78baf22ac0e25d2b18add81d42f733e0cd35620 (patch) | |
| tree | d950c7c372227e300c8bfd780eea6371a4633692 /tests/c++_console/src/main.cpp | |
| parent | 202ceb6b071c7a1e95482dcb8bb7b48f24cd5bdc (diff) | |
add some tests
Diffstat (limited to 'tests/c++_console/src/main.cpp')
| -rwxr-xr-x | tests/c++_console/src/main.cpp | 9 |
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; +} |
