I was looking at quote.

user=> (quote 1)
1
user=> (quote)
nil
user=> (quote quote)
quote
user=> ((quote quote) 1)
nil

It's the last result that confuses me. I would have expected the
result to be "1" - e.g. the same as (quote 1). I figured I'd try quote
on something other than itself, and it just got stranger:

user=> ((quote +) 1 2)
2

I would have expected 3.

-- 
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