From 1448d3b62a118991019559d5b068063b51f53a9f Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 1 Apr 2024 23:26:10 +0800 Subject: add binary bar module --- tests/projects/other/native_module/modules/binary/src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/projects/other/native_module/modules/binary/src/main.cpp (limited to 'tests/projects/other/native_module/modules/binary/src/main.cpp') 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 + +using namespace std; + +int main(int argc, char** argv) +{ + cout << "hello world!" << endl; + return 0; +} -- cgit v1.3.1