feat: add repomap support for ocaml/ocaml_interface

This commit is contained in:
Andrey Popp 2025-03-30 22:09:06 +04:00
parent db261d0fa4
commit e980973621
5 changed files with 332 additions and 2 deletions

View file

@ -0,0 +1,14 @@
(* Module definition *)
module Greeter : sig
type person = {
name: string;
age: int
}
val create_person : string -> int -> person
val greet : person -> unit
end
(* Outside the module *)
val main : unit -> unit