Why does this bit of Clojure code:
user=> (map (constantly (println "Loop it.")) (range 0 3))
Yield this output:
Loop it.
(nil nil nil)
I'd expect it to print "Loop it" three times as a side effect of evaluating the function three times.
|
Why does this bit of Clojure code:
Yield this output:
I'd expect it to print "Loop it" three times as a side effect of evaluating the function three times. |
|||
|
|
|
If all you want to do is to call |
|||||||||||||
|
|
As sepp2k rightly points out The idiomatic way to achieve what you are doing here would be to use
Or alternatively
Both of these solutions are non-lazy, which is probably what you want if you are just running some code for the side effects. |
||||
|
|
|
You can get a behavior close to your intent by usig repeatedly and a lambda expression. For instance:
Unless you're at the REPL, this needs to be surrounded by a |
||||