Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created March 22, 2015 16:06
Show Gist options
  • Save kouddy/07d5991e5131056e48fe to your computer and use it in GitHub Desktop.
Save kouddy/07d5991e5131056e48fe to your computer and use it in GitHub Desktop.
(define zero (lambda (f) (lambda (x) x)))
(define one (lambda (f) (lambda (x) (f x))))
(define two (lambda (f) (lambda (x) (f (f x)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment