summaryrefslogtreecommitdiff
path: root/tests/projects/c++/manifest/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2021-02-22 22:38:54 +0800
committerruki <[email protected]>2021-02-22 22:38:54 +0800
commit3a579c246f983da7a91bc870a8395a6227ac93c7 (patch)
tree11b74074a26f86e4e6ee20c8fbbe53f48e8a5d20 /tests/projects/c++/manifest/src/main.cpp
parentf78a823f3cc8f1b1d71bbd8882a1881c99834aa6 (diff)
add manifest rule
Diffstat (limited to 'tests/projects/c++/manifest/src/main.cpp')
-rw-r--r--tests/projects/c++/manifest/src/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/c++/manifest/src/main.cpp b/tests/projects/c++/manifest/src/main.cpp
new file mode 100644
index 000000000..db2361659
--- /dev/null
+++ b/tests/projects/c++/manifest/src/main.cpp
@@ -0,0 +1,9 @@
+#include <iostream>
+
+using namespace std;
+
+int main(int argc, char** argv)
+{
+ cout << "hello world!" << endl;
+ return 0;
+}