diff options
Diffstat (limited to 'tests/exec/hello.cpp')
-rw-r--r-- | tests/exec/hello.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/exec/hello.cpp b/tests/exec/hello.cpp new file mode 100644 index 0000000..5c9f8eb --- /dev/null +++ b/tests/exec/hello.cpp @@ -0,0 +1,5 @@ +#include <iostream> + +int main() { + std::cout << "hello world\n"; +} |