6 lines
56 B
Text
6 lines
56 B
Text
integer i
|
|
i = 0
|
|
while 1 do
|
|
? i
|
|
i += 1
|
|
end while
|