aboutsummaryrefslogtreecommitdiff
path: root/2017/src
diff options
context:
space:
mode:
Diffstat (limited to '2017/src')
-rw-r--r--2017/src/day01.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/2017/src/day01.cpp b/2017/src/day01.cpp
new file mode 100644
index 0000000..4a3fd99
--- /dev/null
+++ b/2017/src/day01.cpp
@@ -0,0 +1,9 @@
1#include <iostream>
2
3using namespace std;
4
5int
6main()
7{
8 cout << "Hallo Welt" << '\n';
9}