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 f7c7db5..7acfc6c 100644 --- a/Program.fs +++ b/Program.fs @@ -32,5 +32,7 @@ match (day, part) with | (11, 2) -> printf $"{Day11.part2 ()}\n" | (12, 1) -> printf $"{Day12.part1 ()}\n" | (12, 2) -> printf $"{Day12.part2 ()}\n" +| (13, 1) -> printf $"{Day13.part1 ()}\n" +| (13, 2) -> printf $"{Day13.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 |