On Jun 25, 4:15 am, Mark Addleman <mark_addle...@bigfoot.com> wrote:
> java.lang.UnsupportedOperationException: nth not supported on this
> type: Symbol (db.clj:101)
It turns out this error was due to not specifying my macro's arg list
within brackets:
(defmacro with-table table rows & instructions ...)
of course, it should be
(defmacro with-table [table rows & instructions] ...)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---