summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/generichello/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/generichello/main.cpp')
-rw-r--r--languages/cpp/app_templates/generichello/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/languages/cpp/app_templates/generichello/main.cpp b/languages/cpp/app_templates/generichello/main.cpp
new file mode 100644
index 00000000..f97c8417
--- /dev/null
+++ b/languages/cpp/app_templates/generichello/main.cpp
@@ -0,0 +1,17 @@
+%{CPP_TEMPLATE}
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <iostream>
+#include <cstdlib>
+
+using namespace std;
+
+int main(int argc, char *argv[])
+{
+ cout << "Hello, world!" << endl;
+
+ return EXIT_SUCCESS;
+}