8 lines
106 B
Text
8 lines
106 B
Text
repeat i 10 [
|
|
prin i
|
|
if zero? i % 5 [
|
|
prin newline
|
|
continue
|
|
]
|
|
prin ", "
|
|
]
|