summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/main.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/main.ml b/bin/main.ml
index 0ffbaac..292f581 100644
--- a/bin/main.ml
+++ b/bin/main.ml
@@ -22,6 +22,8 @@ let day_part_fn day part =
match (day, part) with
| (1, 1) -> Day01.part1
| (1, 2) -> Day01.part2
+ | (2, 1) -> Day02.part1
+ | (2, 2) -> Day02.part2
| _ -> failwith (Format.sprintf "Day %d, part %d, has not yet been implemented\n" day part)
let () =