pieuvre/types.ml

9 lines
104 B
OCaml
Raw Normal View History

2024-04-15 12:07:49 +02:00
type ty_id = string
type ty =
TVar of ty_id
| Arr of ty * ty
| Bot
2024-04-16 10:07:09 +02:00
type gam = (ty_id * ty) list