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

6 lines
79 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
put 1024 into n
repeat while n > 0
put n & cr
divide n by 2
end repeat