8 lines
104 B
Text
8 lines
104 B
Text
loop 1..10 'i [
|
|
prints i
|
|
if 0 = i%5 [
|
|
print ""
|
|
continue
|
|
]
|
|
prints ", "
|
|
]
|