David Sletten <[email protected]> writes: > Umm, kind of...The single quote is a macro character not a real > macro.
And I didn't say it was a macro. It's a macro character tied to a reader macro, and it participates in read-time macroexpansion. ,---- | user> (quote (a 'b)) | (a (quote b)) `---- [...] > The reader silently converts 'pung to (quote pung) prior to > evaluation, so you have to come at it in a roundabout way: That's not conspiring; that's read-time macroexpansion working as intended. -- Steven E. Harris -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. 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
