Created
July 22, 2014 09:49
-
-
Save yoshihiro503/5b89193251895c075674 to your computer and use it in GitHub Desktop.
sig_sample
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
Require Import Arith. | |
Definition x : {n | n > 0}. | |
Proof. | |
refine (@exist nat (fun n => n > 0) 10 _). | |
auto 10. | |
auto with arith. | |
Defined. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment