6 lines
64 B
Text
6 lines
64 B
Text
|
|
local n=1024
|
||
|
|
while `n'>0 {
|
||
|
|
display `n'
|
||
|
|
local n=floor(`n'/2)
|
||
|
|
}
|