Skip to content

Instantly share code, notes, and snippets.

@FedericoPonzi
Last active April 20, 2020 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FedericoPonzi/2c68971d816985ad6291 to your computer and use it in GitHub Desktop.
Save FedericoPonzi/2c68971d816985ad6291 to your computer and use it in GitHub Desktop.
Example of eager-dynamic syntax with Lisp.
(let ((x 1))
(let
((y #' (lambda (z) (+ 0 x) ) ))
(let ((x 2))
(funcall y 3) ; Returns 2
)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment