aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_libcxx_mod2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hello_libcxx_mod2.cpp')
-rw-r--r--tests/hello_libcxx_mod2.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/hello_libcxx_mod2.cpp b/tests/hello_libcxx_mod2.cpp
new file mode 100644
index 00000000..b18a523a
--- /dev/null
+++ b/tests/hello_libcxx_mod2.cpp
@@ -0,0 +1,10 @@
+#include <iostream>
+#include <emscripten.h>
+
+int main()
+{
+ std::cout << "hello, world!" << std::endl;
+ emscripten_jcache_printf("waka %d waka\n", 5);
+ return 0;
+}
+