lambda/types.ml
Michael Zhang 97971a1d0c
test
2018-02-16 05:22:07 -06:00

10 lines
163 B
OCaml

type var = string
type term =
| Assign of string * term
| TmVar of var
| TmAbs of var * term
| TmApp of term * term
type context = (string * term) list