pieuvre/types.ml
2024-04-16 10:07:09 +02:00

9 lines
104 B
OCaml

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