pieuvre/expr.ml

10 lines
148 B
OCaml
Raw Normal View History

2024-04-09 11:09:33 +02:00
type id = string
2024-04-15 12:07:49 +02:00
type ty_annot = id * Types.ty
2024-04-09 11:09:33 +02:00
type expr =
Fun of ty_annot * expr
| App of expr * expr
| Var of id
| Exf of expr * string