aboutsummaryrefslogtreecommitdiff
path: root/src/2022/day10/aoc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2022/day10/aoc.cpp')
-rw-r--r--src/2022/day10/aoc.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/2022/day10/aoc.cpp b/src/2022/day10/aoc.cpp
new file mode 100644
index 0000000..58b89e4
--- /dev/null
+++ b/src/2022/day10/aoc.cpp
@@ -0,0 +1,10 @@
+#include "aoc.h"
+
+namespace aoc2022 {
+
+std::pair<int, int> day10(line_view file)
+{
+ return {0, 0};
+}
+
+} // namespace aoc2022