6 lines
59 B
Text
6 lines
59 B
Text
|
|
var i := 1024
|
||
|
|
while (i > 0) {
|
||
|
|
println(i)
|
||
|
|
i //= 2
|
||
|
|
}
|