RosettaCodeData/Task/Loops-While/QB64/loops-while.qb64

7 lines
69 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Dim n As Integer
n = 1024
While n > 0
Print n
n = n \ 2
Wend