about summary refs log tree commit diff
path: root/pkgs/by-name/he/hello-cpp/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/he/hello-cpp/src/main.cpp')
-rw-r--r--pkgs/by-name/he/hello-cpp/src/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/by-name/he/hello-cpp/src/main.cpp b/pkgs/by-name/he/hello-cpp/src/main.cpp
new file mode 100644
index 0000000000000..5c887e112046f
--- /dev/null
+++ b/pkgs/by-name/he/hello-cpp/src/main.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main(int argc, char *argv[]) {
+    std::cout << "Hello, C++\n";
+    return 0;
+}