Skip to content

Instantly share code, notes, and snippets.

@voodootikigod
Created November 11, 2008 03:00
Show Gist options
  • Save voodootikigod/23723 to your computer and use it in GitHub Desktop.
Save voodootikigod/23723 to your computer and use it in GitHub Desktop.
(define a (lambda (x) (+ x 4)))
(a 4)
(define (b q) (a q))
(define a (lambda (x) (* x 16)))
(b 4)
(a 4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment