RosettaCodeData/Task/Loops-While/Yabasic/loops-while.basic

7 lines
57 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
i = 1024
while i > 0
Print i
i = int(i / 2)
wend
end