diff options
Diffstat (limited to 'lib/day4.ml')
-rw-r--r-- | lib/day4.ml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/day4.ml b/lib/day4.ml new file mode 100644 index 0000000..5f433e2 --- /dev/null +++ b/lib/day4.ml @@ -0,0 +1,24 @@ +open! Imports + +module M = struct + (* Type to parse the input into *) + type t = unit + + (* Parse the input to type t, invoked for both parts *) + let parse _inputs = () + + (* Run part 1 with parsed inputs *) + let part1 _ = () + + (* Run part 2 with parsed inputs *) + let part2 _ = () +end + +include M +include Day.Make (M) + +(* Example input *) +let example = "" + +(* Expect test for example input *) +let%expect_test _ = run example ; [%expect {| |}] |