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 d79e29e..f132094 100644
--- a/Program.fs
+++ b/Program.fs
@@ -18,5 +18,7 @@ match (day, part) with
 | (4, 2) -> printf $"{Day4.part2 ()}\n"
 | (5, 1) -> printf $"{Day5.part1 ()}\n"
 | (5, 2) -> printf $"{Day5.part2 ()}\n"
+| (6, 1) -> printf $"{Day6.part1 ()}\n"
+| (6, 2) -> printf $"{Day6.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