about summary refs log tree commit diff stats
path: root/lib/day7.ml
blob: 5f433e2eae038ea62532ee26d934f232f624e813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 {| |}]