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