diff options
Diffstat (limited to 'test/wasm_backend/hello_world_real.cpp')
-rw-r--r-- | test/wasm_backend/hello_world_real.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/wasm_backend/hello_world_real.cpp b/test/wasm_backend/hello_world_real.cpp new file mode 100644 index 000000000..1e39e8bd4 --- /dev/null +++ b/test/wasm_backend/hello_world_real.cpp @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() { + printf("hello, world!\n"); +} + |