You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 20, 2018. It is now read-only.
data Natural : Type where
zero : Natural
successor : Natural → Natural
isZero : Natural → Boolean
= λ n : Natural . case n (λ _ : Unit . true) (λ _ : Natural . λ _ : Unit . false)
(Remembering that constructed values are currently represented as right-nested tuples terminated with the unit value.)
This is an extension to type descriptions.
cf #65.
The text was updated successfully, but these errors were encountered: