6 lines
73 B
Text
6 lines
73 B
Text
|
|
var i = 1024
|
||
|
|
while (i > 0) {
|
||
|
|
System.print(i)
|
||
|
|
i = (i / 2).floor
|
||
|
|
}
|