Guest User

Untitled

a guest
Feb 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. rec : A -> (A -> A) -> Nat -> A
  2.  
  3. rec Z S zero = zero
  4. rec Z S (suc n) = S (rec Z S n)
  5.  
  6. X
  7. Int -> X
  8. X -> Int
  9. (Unit -> X) -> Int
Add Comment
Please, Sign In to add comment