up vote 4 down vote favorite
share [g+] share [fb]

Why doesn't this produce the output I expect?

(defn test-fn []
  (do
    (println "start")
    (map #(println (+ % 1)) '(1 2 3))
    (println "done")))

It outputs

start
done

Whereas I would expect

start
2 3 4
done
link|improve this question

Hopefully you got a good answer in the IRC channel :) Good luck with learning Clojure! – Isaac Hodes Aug 29 '10 at 5:49
Yes! Thanks for answering my question on #clojure, Isaac.. – yayitswei Aug 31 '10 at 6:36
feedback

1 Answer

up vote 7 down vote accepted

map is lazy, and do does not force it. If you want to force the evaluation of a lazy sequence, use doall or dorun.

(defn test-fn []
  (do
    (println "start")
    (dorun (map #(println (+ % 1)) '(1 2 3)))
    (println "done")))
link|improve this answer
perfect.. thanks! – yayitswei Aug 29 '10 at 6:09
don't do (+ % 1) its harder to read and slower then (inc %) – nickik Aug 29 '10 at 20:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.