RosettaCodeData/Task/Loops-While/LiveCode/loops-while.livecode

6 lines
79 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
put 1024 into n
repeat while n > 0
put n & cr
divide n by 2
end repeat