RosettaCodeData/Task/Constrained-genericity/OCaml/constrained-genericity-1.ocaml
2023-07-01 13:44:08 -04:00

4 lines
61 B
Text

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