Created
May 14, 2018 13:08
-
-
Save Lysxia/d577b3b3b482b2c41aef3d5ed259caa1 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
Require Import Nat. | |
Definition TT (n : nat) : Type := if even n then bool else nat. | |
Definition bla (n : nat) : TT n. | |
unfold TT. | |
destruct (even n). | |
apply true. | |
apply 4. | |
Defined. | |
Print bla. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment