Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created June 25, 2009 15:57
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 jackdempsey/135941 to your computer and use it in GitHub Desktop.
Save jackdempsey/135941 to your computer and use it in GitHub Desktop.
user=> (def foo 29)
#'user/foo
user=> foo
29
user=> (print-foo)
29
nil
user=> (let [foo "foo here in let"] (print-foo))
29
nil
user=> (binding [foo "foo here in let"] (print-foo))
foo here in let
nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment