proof_checker/lib/term.mli
2024-08-29 22:55:09 -07:00

5 lines
103 B
OCaml

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