5 lines
82 B
Text
5 lines
82 B
Text
integer i = 1024
|
|
while i!=0 do
|
|
?i
|
|
i = floor(i/2) -- (see note)
|
|
end while
|