Hi, When I run this expression:
(map (fn [x] (println x) x) (range 5)) I expect to get (0 1 2 3 4) but instead I get (0 1 2 3 4 0 1 2 3 4) It seems like the println output is included in the result list. Am I missing something? -- 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
