2 things about Clojure 1. It amazes me how easy it is to get things done 2. The Clojure Group members are fantastic!
Thanks guys!! On Feb 16, 10:19 pm, Mark Engelberg <[email protected]> wrote: > dotimes is for side effects. What you want is to use a for loop that > produces a sequence of key-value pairs. > > (into {} (for [i (range 3)] [i (range 4)])) -- 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
