proof_checker/lib/term.ml

5 lines
95 B
OCaml

type t =
| Var of int
| Const of string
| Free of string
| Function of string * t list