pieuvre/parser_entry.ml
2024-05-13 18:05:28 +02:00

14 lines
145 B
OCaml

open Lam
open Types
open Proof
type cmd =
| Goal of ty
| Undo
| Qed
| Tact of tactic
type parser_entry =
| Lam of lam
| Cmd of cmd