RosettaCodeData/Task/Constrained-genericity/OCaml/constrained-genericity-1.ml
2024-10-16 18:07:41 -07:00

4 lines
61 B
OCaml

module type Eatable = sig
type t
val eat : t -> unit
end