Skip to content

Instantly share code, notes, and snippets.

@eschulte
Created September 25, 2010 20:36
Show Gist options
  • Save eschulte/597285 to your computer and use it in GitHub Desktop.
Save eschulte/597285 to your computer and use it in GitHub Desktop.
(define foo
(lambda (i)
(if (= i 0)
(lambda (x) x)
(lambda (x) (foo (- i 1))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment