7 lines
56 B
Text
7 lines
56 B
Text
i = 1
|
|
|
|
repeat
|
|
print i
|
|
i = i + 1
|
|
until i = 0
|
|
end
|