RosettaCodeData/Task/Loops-Do-while/Gambas/loops-do-while.gambas

10 lines
108 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Public Sub Main()
Dim siCount As Short
Repeat
Inc siCount
Print siCount;;
Until siCount Mod 6 = 0
End