Stream: Coq users

Topic: How can I print the current goal?


view this post on Zulip Ignat Insarov (Jun 20 2021 at 17:51):

Is there an Ltac command that prints the current goal _(or other parts of state)_ to the response window?

view this post on Zulip Théo Winterhalter (Jun 20 2021 at 18:05):

idtac can print stuff that you give to it as argument, including terms.
So you could write

lazymatch goal with
| |- ?g => idtac g
end.

view this post on Zulip Ignat Insarov (Jun 20 2021 at 18:16):

Thanks!


Last updated: Mar 29 2024 at 13:01 UTC