RosettaCodeData/Task/Loops-While/Mia/loops-while.mia

6 lines
52 B
Plaintext

i = 1024
while i > 0 {
print i
i = i :/ 2
}