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 ff91000..4d78505 100644 --- a/Program.fs +++ b/Program.fs @@ -24,5 +24,7 @@ match (day, part) with | (7, 2) -> printf $"{Day7.part2 ()}\n" | (8, 1) -> printf $"{Day8.part1 ()}\n" | (8, 2) -> printf $"{Day8.part2 ()}\n" +| (9, 1) -> printf $"{Day9.part1 ()}\n" +| (9, 2) -> printf $"{Day9.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 |