Created
October 13, 2015 00:08
-
-
Save minad/1729b054fecd7a768491 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
| typeof : {t:Type} -> t -> Type | |
| typeof {t} _ = t | |
| level : Nat -> Type | |
| level Z = Nat | |
| level (S n) = typeof (level n) | |
| isThisTrue : level 1 = level 2 | |
| isThisTrue = refl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment