diff options
Diffstat (limited to 'tests/hello_libcxx.cpp')
-rw-r--r-- | tests/hello_libcxx.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/hello_libcxx.cpp b/tests/hello_libcxx.cpp new file mode 100644 index 00000000..445c5513 --- /dev/null +++ b/tests/hello_libcxx.cpp @@ -0,0 +1,8 @@ +#include <iostream> + +int main() +{ + std::cout << "hello, world!" << std::endl; + return 0; +} + |