Ah,
thank you, so a newbie question.
But helped me a lot.
Andreas
On Jan 18, 10:26 pm, Jack Moffitt wrote:
> > doesn't show any effect of the for.
> > The only difference is the additional statement at the end.
> > I can not imagine how this statement sequentially behind can influence
>
Hello,
I am quite puzzled:
(defn fortest1 []
(for [a (range 2 10)
b (range 2 10)]
(do
(println "x: " a " b:" b)
(list a b)))
)
(fortest1)
Shows the running "for macro"
(defn fortest2 []
(for [a (range 2 10)
b (range 2 10)]
(do
(println "x: " a " b:"