Setup Scala

This commit is contained in:
Paul-Henri Froidmont 2023-12-04 08:02:51 +01:00
parent 8dec7591dd
commit 13a8e74189
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
37 changed files with 290 additions and 187 deletions

5
ocaml/lib/drivers.mli Normal file
View file

@ -0,0 +1,5 @@
(** Interfaces with core libraries to provide a command-line interface. *)
module Cli : sig
val main : unit -> unit
(** Runs Advent of Code problem runner, via a command-line interface. *)
end