9 lines
144 B
OCaml
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
|
|
|