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 558d491..685f22a 100644 --- a/Program.fs +++ b/Program.fs @@ -36,5 +36,7 @@ match (day, part) with | (13, 2) -> printf $"{Day13.part2 ()}\n" | (14, 1) -> printf $"{Day14.part1 ()}\n" | (14, 2) -> printf $"{Day14.part2 ()}\n" +| (15, 1) -> printf $"{Day15.part1 ()}\n" +| (15, 2) -> printf $"{Day15.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 |