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

4 lines
49 B
Text

i <- 1024
while (i > 0)
prn i
i <- (int i/2)