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