pieuvre/parser_entry.ml

14 lines
150 B
OCaml
Raw Normal View History

2024-04-30 11:44:28 +02:00
open Lam
open Types
open Proof
type cmd =
| Goal of ty
2024-05-11 11:44:43 +02:00
| Undo
2024-05-13 18:05:28 +02:00
| Qed
2024-04-30 11:44:28 +02:00
| Tact of tactic
type parser_entry =
| Lam of lam
2024-05-14 11:43:57 +02:00
| Cmd of cmd list