6 lines
75 B
Text
6 lines
75 B
Text
var n = 1024
|
|
loop {
|
|
if not (n > 0) { break }
|
|
print(n)
|
|
n := n >>> 1
|
|
}
|