summaryrefslogtreecommitdiff
path: root/a1/hello.cc
diff options
context:
space:
mode:
Diffstat (limited to 'a1/hello.cc')
-rw-r--r--a1/hello.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/a1/hello.cc b/a1/hello.cc
new file mode 100644
index 0000000..84d019f
--- /dev/null
+++ b/a1/hello.cc
@@ -0,0 +1,6 @@
+import <iostream>;
+
+int main()
+{
+ std::cout << "Hello World!\n";
+}