6 lines
52 B
Text
6 lines
52 B
Text
|
|
def i = 1024
|
||
|
|
while (i > 0) {
|
||
|
|
println i
|
||
|
|
i /= 2
|
||
|
|
}
|