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

10 lines
148 B
OCaml

type id = string
type ty_annot = id * Types.ty
type expr =
Fun of ty_annot * expr
| App of expr * expr
| Var of id
| Exf of expr * string