lambda/types.ml
Michael Zhang bbd73d5f4a
initial
2018-02-13 17:43:40 -06:00

9 lines
144 B
OCaml

type term =
| TmVar of char
| TmAbs of char * term
| TmApp of term * term
type binding = NameBind
type context = (char * binding) list