summaryrefslogtreecommitdiff
path: root/tests/projects/other/native_module_cjson/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2024-04-04 00:59:22 +0800
committerruki <[email protected]>2024-04-04 00:59:22 +0800
commit5c56dcd60dcce02babbcba862d71f3f891a712a4 (patch)
tree5acbf1b948f9e54d20b4ab58fdfdba04e85a2ca5 /tests/projects/other/native_module_cjson/src/main.cpp
parent89554d9ad26995b1732d8f36f197186ec23b8d40 (diff)
add cjson test
Diffstat (limited to 'tests/projects/other/native_module_cjson/src/main.cpp')
-rw-r--r--tests/projects/other/native_module_cjson/src/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/projects/other/native_module_cjson/src/main.cpp b/tests/projects/other/native_module_cjson/src/main.cpp
new file mode 100644
index 000000000..7c775d288
--- /dev/null
+++ b/tests/projects/other/native_module_cjson/src/main.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main(int argc, char** argv) {
+ std::cout << "hello world!" << std::endl;
+ return 0;
+}