aboutsummaryrefslogtreecommitdiff
path: root/2017/src/day01.cpp
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-10-23 19:38:03 +0200
committerThomas Schmucker <ts@its1.de>2025-10-23 19:38:03 +0200
commitfcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13 (patch)
treeeeb5f7276ca3179f804f3e79e0563ebc0ec05690 /2017/src/day01.cpp
parent00aba02378ac8be31eb00ee61a8f45997b2d74c0 (diff)
downloadadvent-of-code-fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13.tar.gz
advent-of-code-fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13.tar.bz2
advent-of-code-fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13.zip
happy aoc 2017
Diffstat (limited to '2017/src/day01.cpp')
-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}