5 lines
61 B
OCaml
5 lines
61 B
OCaml
|
|
module type Eatable = sig
|
||
|
|
type t
|
||
|
|
val eat : t -> unit
|
||
|
|
end
|