diff options
Diffstat (limited to 'Program.fs')
-rw-r--r-- | Program.fs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Program.fs b/Program.fs index 2b9fee8..f7c7db5 100644 --- a/Program.fs +++ b/Program.fs @@ -30,5 +30,7 @@ match (day, part) with | (10, 2) -> printf $"{Day10.part2 ()}\n" | (11, 1) -> printf $"{Day11.part1 ()}\n" | (11, 2) -> printf $"{Day11.part2 ()}\n" +| (12, 1) -> printf $"{Day12.part1 ()}\n" +| (12, 2) -> printf $"{Day12.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 |