Created
July 18, 2015 07:53
-
-
Save maedaunderscore/4731519594f55bb79511 to your computer and use it in GitHub Desktop.
logic example.v exo0
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
Lemma exo0 : forall P : Prop, P -> P. | |
Proof. | |
move=> P. | |
move=> P2. | |
apply P2. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment