summary refs log tree commit diff stats
path: root/Program.fs
diff options
context:
space:
mode:
Diffstat (limited to 'Program.fs')
-rw-r--r--Program.fs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Program.fs b/Program.fs
index a16ec03..f720b0c 100644
--- a/Program.fs
+++ b/Program.fs
@@ -10,5 +10,6 @@ let day, part = int args[1], int args[2]
 match (day, part) with
 | (1, 1) -> Day1.part1 () |> printf "%A\n"
 | (1, 2) -> Day1.part2 () |> printf "%A\n"
-| _ -> raise (NotImplementedYet("not implemented yet"))
-|> printf "%A\n"
\ No newline at end of file
+| (2, 1) -> Day2.part1 () |> printf "%A\n"
+| (2, 2) -> Day2.part2 () |> printfn "%A\n"
+| _ -> raise (NotImplementedYet("not implemented yet"))
\ No newline at end of file