6 lines
56 B
Text
6 lines
56 B
Text
$n = 1024
|
|
while($n > 0) {
|
|
fn.println($n)
|
|
|
|
$n //= 2
|
|
}
|