8 lines
106 B
Text
8 lines
106 B
Text
for i in 1:10
|
|
print(i)
|
|
if i%5 == 0
|
|
println()
|
|
continue
|
|
end
|
|
print(", ")
|
|
end
|