7 lines
66 B
Text
7 lines
66 B
Text
i = 0
|
|
|
|
repeat
|
|
i = i + 1
|
|
print i, " ";
|
|
until mod(i, 6) = 0
|
|
print
|