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