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

11 lines
89 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
' FB 1.05.0 Win64
Dim i As Integer = 1024
While i > 0
Print i
i Shr= 1
Wend
Sleep