Exits from a function.
Syntax: Exit Function
Example:
Function divTest(a as ubyte, b as ubyte) Dim ret as uByte If b=0 Then ret=0: Exit Function ret = a/b End Function ret
Also See: Function