summary refs log tree commit diff stats
path: root/Program.fs
diff options
context:
space:
mode:
Diffstat (limited to 'Program.fs')
-rw-r--r--Program.fs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Program.fs b/Program.fs
index 7acfc6c..558d491 100644
--- a/Program.fs
+++ b/Program.fs
@@ -34,5 +34,7 @@ match (day, part) with
 | (12, 2) -> printf $"{Day12.part2 ()}\n"
 | (13, 1) -> printf $"{Day13.part1 ()}\n"
 | (13, 2) -> printf $"{Day13.part2 ()}\n"
+| (14, 1) -> printf $"{Day14.part1 ()}\n"
+| (14, 2) -> printf $"{Day14.part2 ()}\n"
 | (x, y) when (1 <= x && x <= 25) && (y = 1 || y = 2)  -> raise (NotImplemented("not implemented yet"))
 | _ -> raise (NotImplemented("invalid values"))
\ No newline at end of file