6 lines
80 B
Text
6 lines
80 B
Text
i = 0
|
|
repeat while TRUE
|
|
i = i+1
|
|
put i
|
|
if i mod 6 = 0 then exit repeat
|
|
end
|