Created
September 7, 2013 09:02
-
-
Save mathie/6474033 to your computer and use it in GitHub Desktop.
Demonstrating late binding in Clojure for @mr_urf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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