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 e85d15f..7e7cb55 100644 --- a/Program.fs +++ b/Program.fs @@ -12,5 +12,7 @@ match (day, part) with | (1, 2) -> Day1.part2 () |> printf "%A\n" | (2, 1) -> Day2.part1 () |> printf "%A\n" | (2, 2) -> Day2.part2 () |> printf "%A\n" +| (3, 1) -> Day3.part1 () |> printf "%A\n" +| (3, 2) -> Day3.part2 () |> printf "%A\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 |