RosettaCodeData/Task/Loops-While/Chipmunk-Basic/loops-while.basic

12 lines
155 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
100 i = 1024
110 do while i > 0
120 print i
130 i = int(i/2)
140 loop
150 print
160 i = 1024
170 while i > 0
180 print i
190 i = int(i/2)
200 wend