Skip to content

Instantly share code, notes, and snippets.

@ChimeraCoder
Created February 6, 2013 18:28
Show Gist options
  • Save ChimeraCoder/4724666 to your computer and use it in GitHub Desktop.
Save ChimeraCoder/4724666 to your computer and use it in GitHub Desktop.
Currying examples
(lambda (x y) (+ x y))
(lambda (x) (lambda (y) (+ x y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment