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

10 lines
145 B
OCaml

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