6 lines
81 B
Text
6 lines
81 B
Text
|
|
(for (i 1 10)
|
||
|
|
(print i)
|
||
|
|
(if (= 0 (% i 5))
|
||
|
|
(println)
|
||
|
|
(print ", ")))
|