8 lines
57 B
Text
8 lines
57 B
Text
i = 1024
|
|
|
|
while i > 0
|
|
print i
|
|
i = i \ 2
|
|
end while
|
|
|
|
end
|