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