Kitty Graphics Protocol in OCaml
terminal graphics ocaml
1type t = [ `Move | `Static ] 2 3let to_int : t -> int = function 4 | `Move -> 0 5 | `Static -> 1