summaryrefslogtreecommitdiff
path: root/examples/helloworld-minimal/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helloworld-minimal/main.cpp')
-rw-r--r--examples/helloworld-minimal/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/helloworld-minimal/main.cpp b/examples/helloworld-minimal/main.cpp
new file mode 100644
index 000000000..7f95e64bb
--- /dev/null
+++ b/examples/helloworld-minimal/main.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main()
+{
+ std::cout << "Hello, World!" << std::endl;
+}