diff options
Diffstat (limited to 'src/2018/day24/aoc.cpp')
-rw-r--r-- | src/2018/day24/aoc.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/2018/day24/aoc.cpp b/src/2018/day24/aoc.cpp new file mode 100644 index 0000000..8595080 --- /dev/null +++ b/src/2018/day24/aoc.cpp @@ -0,0 +1,6 @@ +#include "aoc.h" + +namespace aoc2018 { + +std::pair<int64_t, int64_t> day24(line_view) { return {0, 0}; } +} // namespace aoc2018 |