Skip to content

Instantly share code, notes, and snippets.

@siddhartha-gadgil
Created March 18, 2014 12:09
Show Gist options
  • Save siddhartha-gadgil/9618835 to your computer and use it in GitHub Desktop.
Save siddhartha-gadgil/9618835 to your computer and use it in GitHub Desktop.
_+_ : ℕ → ℕ → ℕ
zero + n = n
(succ m) + n = succ (m + n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment