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

7 lines
57 B
Plaintext

i = 1024
while i > 0
Print i
i = int(i / 2)
wend
end