RosettaCodeData/Task/Loops-Do-while/Microsoft-Small-Basic/loops-do-while-2.basic

8 lines
108 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
i = 0
loopStart:
i = i + 1
TextWindow.WriteLine(i)
If Math.Remainder(i, 6) <> 0 Then
Goto loopStart
EndIf