RosettaCodeData/Task/Loops-While/Liberty-BASIC/loops-while.liberty

7 lines
60 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
i = 1024
while i > 0
print i
i = int( i / 2)
wend
end