I got a very nasty bug from this behavior today

user=> (def a (fn [] "outside a"))
#'user/a
user=> (let [a (fn [] "inside a")] (load-string "(a)"))
"outside a"
user=> (let [a (fn [] "inside a")] (eval '(a)))
"outside a"

Is this really how these functions should behave?

Jonathan

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to