proof_checker/lib/term.mli

5 lines
95 B
OCaml

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