5 lines
95 B
OCaml
5 lines
95 B
OCaml
type t =
|
|
| Var of int
|
|
| Const of string
|
|
| Free of string
|
|
| Function of string * t list
|