summaryrefslogtreecommitdiff
path: root/tests/projects/other/native_module/modules/binary/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2024-04-01 23:26:10 +0800
committerruki <[email protected]>2024-04-01 23:26:10 +0800
commit1448d3b62a118991019559d5b068063b51f53a9f (patch)
tree485e62b343c31d4e4d9e6c5d2ceb9fe9fdc5bf0f /tests/projects/other/native_module/modules/binary/src/main.cpp
parent15eb20076e2334387155c85b491c73da04e4a084 (diff)
add binary bar module
Diffstat (limited to 'tests/projects/other/native_module/modules/binary/src/main.cpp')
-rw-r--r--tests/projects/other/native_module/modules/binary/src/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/other/native_module/modules/binary/src/main.cpp b/tests/projects/other/native_module/modules/binary/src/main.cpp
new file mode 100644
index 000000000..7c435d251
--- /dev/null
+++ b/tests/projects/other/native_module/modules/binary/src/main.cpp
@@ -0,0 +1,9 @@
+#include <iostream>
+
+using namespace std;
+
+int main(int argc, char** argv)
+{
+ cout << "hello world!" << endl;
+ return 0;
+}