pieuvre/lam.ml

10 lines
145 B
OCaml
Raw Normal View History

2024-04-16 10:07:09 +02:00
type id = string
type ty_annot = id * Types.ty
type lam =
Fun of ty_annot * lam
| App of lam * lam
| Var of id
| Exf of lam * Types.ty