aboutsummaryrefslogtreecommitdiff
path: root/samples/C++/hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/C++/hello.cpp')
-rw-r--r--samples/C++/hello.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/samples/C++/hello.cpp b/samples/C++/hello.cpp
new file mode 100644
index 0000000..d36f6e6
--- /dev/null
+++ b/samples/C++/hello.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+
+using namespace std;
+
+int main()
+{
+ cout << "Hello World" << endl;
+}