diff options
| author | ruki <[email protected]> | 2020-08-22 23:46:44 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-08-22 23:46:44 +0800 |
| commit | 6da64856c6ed01eb567a977dae3e117babaaa287 (patch) | |
| tree | 7c5fe395a9c34aa4a7d5946a6217e40e3de67ae7 /tests/projects/c++/shared_library/src/main.cpp | |
| parent | 55eb2fa3baaa571a616250ee8a89e98b4d82d49c (diff) | |
remove some comments
Diffstat (limited to 'tests/projects/c++/shared_library/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/shared_library/src/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/c++/shared_library/src/main.cpp b/tests/projects/c++/shared_library/src/main.cpp new file mode 100644 index 000000000..72e03272b --- /dev/null +++ b/tests/projects/c++/shared_library/src/main.cpp @@ -0,0 +1,10 @@ +#include "interface.h" +#include <iostream> + +using namespace std; + +int main(int argc, char** argv) +{ + cout << "add(1, 2) = " << add(1, 2) << endl; + return 0; +} |
