Skip to content

Instantly share code, notes, and snippets.

@mathie
Created September 7, 2013 09:02
Show Gist options
  • Save mathie/6474033 to your computer and use it in GitHub Desktop.
Save mathie/6474033 to your computer and use it in GitHub Desktop.
Demonstrating late binding in Clojure for @mr_urf
user=> (def foo 'hello)
#'user/foo
user=> (defn bar [] foo)
#'user/bar
user=> (bar)
hello
user=> (def foo 'world)
#'user/foo
user=> (bar)
world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment