So, I was thinking that ' and ` were basically the same, unless a ~ was
involved somewhere. But I have discovered this.



(ns john)

(println '(paul))
(println `(paul))


;;=>
(paul)
(john/paul)

With the ' paul is not namespace qualified, while with the ` paul is.


Turns out to be a bit of a pain, actually, although I have worked around
it. But mostly I am surprised. Is this expected?

Phil

-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to