aboutsummaryrefslogtreecommitdiff
path: root/aoc2017-gleam/src/aoc_2017/day_15.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'aoc2017-gleam/src/aoc_2017/day_15.gleam')
-rw-r--r--aoc2017-gleam/src/aoc_2017/day_15.gleam7
1 files changed, 7 insertions, 0 deletions
diff --git a/aoc2017-gleam/src/aoc_2017/day_15.gleam b/aoc2017-gleam/src/aoc_2017/day_15.gleam
new file mode 100644
index 0000000..a0a1145
--- /dev/null
+++ b/aoc2017-gleam/src/aoc_2017/day_15.gleam
@@ -0,0 +1,7 @@
+pub fn pt_1(input: String) {
+ todo as "part 1 not implemented"
+}
+
+pub fn pt_2(input: String) {
+ todo as "part 2 not implemented"
+}