Hi, On Apr 9, 5:39 pm, Josh Stratton <strattonbra...@gmail.com> wrote:
> (map (fn [main fixed] (setupTable main fixed)) mainTables > fixedTables) Laziness. The map is never realised. map is not a loop. Use doseq. (doseq [[main fixed] (map vector mainTables fixedTables)] (setupTable main fixed)) Sincerely Meikel -- 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 To unsubscribe, reply using "remove me" as the subject.