summaryrefslogtreecommitdiff
path: root/package/helloworld/src/helloworld.cc
diff options
context:
space:
mode:
Diffstat (limited to 'package/helloworld/src/helloworld.cc')
-rw-r--r--package/helloworld/src/helloworld.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/helloworld/src/helloworld.cc b/package/helloworld/src/helloworld.cc
new file mode 100644
index 000000000..ac640ca2a
--- /dev/null
+++ b/package/helloworld/src/helloworld.cc
@@ -0,0 +1,6 @@
+#include <iostream>
+
+main() {
+ std::cout<<"Hello World! (C++)\n";
+ return 0;
+}