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

9 lines
57 B
Plaintext

i = 1024
while i > 0
print i
i = i \ 2
end while
end