Exit Sub

Exits from a sub procedure.

Syntax:  Exit Sub

Example:

Sub Test(a as ubyte, b as ubyte)

  If b=0 Then Exit Sub
  nop: nop: nop

End Sub

Also See: Sub