proof_checker/lib/term.mli

6 lines
95 B
OCaml
Raw Normal View History

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