Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created September 27, 2012 05:50
Show Gist options
  • Save yuanmai/3792409 to your computer and use it in GitHub Desktop.
Save yuanmai/3792409 to your computer and use it in GitHub Desktop.
PicoLisp dynamic scoping
(de f (X)
(g))
(de g ()
X)
(f 1)
-> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment