From 72985a034146f40d460ea1fcf7bd017c00b520d7 Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 2 Apr 2024 00:00:12 +0800 Subject: improve binary test --- tests/projects/other/native_module/modules/binary/src/main.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'tests/projects/other/native_module/modules/binary/src') diff --git a/tests/projects/other/native_module/modules/binary/src/main.cpp b/tests/projects/other/native_module/modules/binary/src/main.cpp index 7c435d251..740142372 100644 --- a/tests/projects/other/native_module/modules/binary/src/main.cpp +++ b/tests/projects/other/native_module/modules/binary/src/main.cpp @@ -1,9 +1,6 @@ -#include +#include -using namespace std; - -int main(int argc, char** argv) -{ - cout << "hello world!" << endl; +int main(int argc, char** argv) { + printf("%s %s\n", argv[1], argv[2]); return 0; } -- cgit v1.3.1