RosettaCodeData/Task/Loops-Do-while/Microsoft-Small-Basic/loops-do-while-1.basic
2023-07-01 13:44:08 -04:00

8 lines
156 B
Text

i = 0
' first iteration - before the While
i = i + 1
TextWindow.WriteLine(i)
While Math.Remainder(i, 6) <> 0
i = i + 1
TextWindow.WriteLine(i)
EndWhile