Home > Available Help Files > PC-DMIS BASIC Language > Language Reference A – Z > GoTo Statement > Example:
Current Help System: PC-DMIS BASIC (View Core Help)
Example:
Sub main ()
Dim x,y,z
For x = 1 to 5
For y = 1 to 5
For z = 1 to 5
Print "Looping" ,z,y,x
If y > 3 Then
GoTo Label1
End If
Next z
Next y
Next x
Label1:
End Sub