Incidentally, you can find this stuff out by reading the source, if  
you know where to look. It's a reader macro, so LispReader.java is the  
best place to start. Look for the metachar '=', which crops up on line  
91:

http://github.com/richhickey/clojure/blob/14316ae2110a779ffc8ac9c3da3f1c41852c4289/src/jvm/clojure/lang/LispReader.java#L91

   dispatchMacros['='] = new EvalReader();


then just skip ahead to the EvalReader class definition if you need  
additional context to understand what's going on.

HTH.

-R

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