pieuvre/parser_entry.ml

18 lines
189 B
OCaml
Raw Permalink 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
| Check
type instr =
Cmd of cmd
2024-04-30 11:44:28 +02:00
| Tact of tactic
type parser_entry =
| Lam of lam
| Instr of instr list