RosettaCodeData/Task/Loops-While/Dyalect/loops-while.dyalect

6 lines
49 B
Plaintext

var i = 1024
while i > 0 {
print(i)
i /= 2
}