From 7000f47b60b3fbdf90e2db12a363bbd1b2236b53 Mon Sep 17 00:00:00 2001 From: brian Date: Sun, 3 Dec 2023 21:54:01 -0800 Subject: add template for ocaml --- lib/day23.ml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/day23.ml (limited to 'lib/day23.ml') diff --git a/lib/day23.ml b/lib/day23.ml new file mode 100644 index 0000000..5f433e2 --- /dev/null +++ b/lib/day23.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 {| |}] -- cgit 1.4.1-2-gfad0