diff options
Diffstat (limited to 'tests/console_c++/src/main.cpp')
| -rwxr-xr-x | tests/console_c++/src/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/console_c++/src/main.cpp b/tests/console_c++/src/main.cpp new file mode 100755 index 000000000..db2361659 --- /dev/null +++ b/tests/console_c++/src/main.cpp @@ -0,0 +1,9 @@ +#include <iostream> + +using namespace std; + +int main(int argc, char** argv) +{ + cout << "hello world!" << endl; + return 0; +} |
