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