8 lines
104 B
Text
8 lines
104 B
Text
for i in (1..10) {
|
|
print i
|
|
if (i %% 5) {
|
|
print "\n"
|
|
next
|
|
}
|
|
print ', '
|
|
}
|