1

Is there any command to print the not finished proof with metavariables?

For example,

Lemma a: forall P Q, (P -> Q) -> P -> Q.
intros.
apply X.

in this state of proof, can I print a := X ? by a command?

12412316
  • 725
  • 7
  • 17

1 Answers1

2

You can use the Show Proof command. On your example it prints the following.

(fun (P Q : Type) (X : P -> Q) (X0 : P) => X ?Goal)
perthmad
  • 291
  • 1
  • 2