pieuvre/types.ml
2024-04-15 12:07:49 +02:00

9 lines
102 B
OCaml

type ty_id = string
type ty =
TVar of ty_id
| Arr of ty * ty
| Bot
type gam = ty_id * ty list