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
|
Why doesn't this produce the output I expect?
It outputs
Whereas I would expect
| |||||
feedback
|
|
| |||||
|
feedback
|