Last active
May 2, 2016 06:26
-
-
Save jroesch/3ae9d497e001929c53f37d18345bce53 to your computer and use it in GitHub Desktop.
This file contains 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
check @nat.rec | |
constant C : nat -> Type | |
constant cZ : C nat.zero | |
constant cS : forall n, C n -> C (nat.succ n) | |
eval (@nat.rec C cZ cS nat.zero) | |
constant x : nat | |
eval (@nat.rec C cZ cS (nat.succ x)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment