RosettaCodeData/Task/Loops-While/Arturo/loops-while.arturo
2023-07-01 13:44:08 -04:00

6 lines
42 B
Text

i: 1024
while [i>0] [
print i
i: i/2
]