RosettaCodeData/Task/Loops-While/Mia/loops-while.mia
2024-07-13 15:19:22 -07:00

5 lines
52 B
Text

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