proof_checker/lib/term.mli

6 lines
103 B
OCaml
Raw Normal View History

2024-08-29 22:55:09 -07:00
type t =
| Var of int
| Const of string
| Free of string
| Function of string * t list