Created
August 1, 2020 22:18
-
-
Save mheiber/a0a4cf88e05018f1b25925a4080aae37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ltac dubstep_goal F := | |
unfold F; fold F. | |
Ltac dubstep_in F H := | |
unfold F in H; fold F in H. | |
Tactic Notation "dubstep" constr(F) := (dubstep_goal F). | |
Tactic Notation "dubstep" constr(F) "in" hyp(H) := (dubstep_in F H). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment