On Jan 3, 7:44 am, Mark <markaddle...@gmail.com> wrote: > One of the stmbling blocks I find as a Clojure newbie are syntax > errors working with core library macros. The error messaeges aren't > always descriptive. What are the chances that core macros could be > rewriiten using a future version on defsyntax to help with this > problem? There would be a bootstrapping problem involved if such a transition would happen as the macros needed to define the functions and macros used by the library need to be defined before the library is able to define other macros. The problem is in theory solvable: use the current versions as bootstrapping versions then redefine them once library is usable. However, this solution would involve code duplication which is not desirable. One could also give up the ability to bootstrap the language, but IMO that would be worse than the code duplication.
Brian -- 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