RosettaCodeData/Task/Flow-control-structures/Gambas/flow-control-structures.gambas

12 lines
121 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
Public Sub Main()
Dim siCount As Short
LOOPIT:
Print siCount;;
Inc siCount
If siCount > 100 Then Quit
Goto LoopIt
End