diff options
| author | Thomas Schmucker <ts@its1.de> | 2025-10-23 19:38:03 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2025-10-23 19:38:03 +0200 |
| commit | fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13 (patch) | |
| tree | eeb5f7276ca3179f804f3e79e0563ebc0ec05690 /2017 | |
| parent | 00aba02378ac8be31eb00ee61a8f45997b2d74c0 (diff) | |
| download | advent-of-code-fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13.tar.gz advent-of-code-fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13.tar.bz2 advent-of-code-fcbb722bd4c5ca2bd34a7cf9c0ba48f2f955da13.zip | |
happy aoc 2017
Diffstat (limited to '2017')
| -rw-r--r-- | 2017/data/.gitkeep | 0 | ||||
| -rw-r--r-- | 2017/src/day01.cpp | 9 |
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 | |||
| 3 | using namespace std; | ||
| 4 | |||
| 5 | int | ||
| 6 | main() | ||
| 7 | { | ||
| 8 | cout << "Hallo Welt" << '\n'; | ||
| 9 | } | ||
