Created
March 21, 2014 13:07
-
-
Save moutend/9685784 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
| Coq < Definition prop0 : forall (A : Prop), A -> A := | |
| Coq < fun A x => x. | |
| prop0 is defined | |
| Coq < Eval compute in prop0. | |
| = fun (A : Prop) (x : A) => x | |
| : forall A : Prop, A -> A | |
| Coq < |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment