A typo made me discover a behaviour of Clojure for which I haven't  
found an explanation yet:

user=> (def a 2)
#'user/a
user=> a
2
user=> a'
2
user=> a
a
user=> a'
2
user=> (+ a 1)
(+ a 1)

What does "a'" do to the symbol a to make it behave differently?

Konrad.


--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to