Skip to content

Instantly share code, notes, and snippets.

@dLobatog
Created July 5, 2012 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dLobatog/3050271 to your computer and use it in GitHub Desktop.
Save dLobatog/3050271 to your computer and use it in GitHub Desktop.
coNatIntro : (a -> Either () a) -> a -> CoNat
coNatIntro f a = case f a of
Left () -> cO
Right a' -> cS (coNatIntro f a')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment