aboutsummaryrefslogtreecommitdiff
path: root/2017
diff options
context:
space:
mode:
Diffstat (limited to '2017')
-rw-r--r--2017/data/.gitkeep0
-rw-r--r--2017/src/day01.cpp9
2 files changed, 9 insertions, 0 deletions
diff --git a/2017/data/.gitkeep b/2017/data/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/2017/data/.gitkeep
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}