Ends
the current sub and returns to the calling sub. If Return is
followed by a value, then the value will be passed to the calling
sub.
Syntax:
Return [Value]
Example:
Sub
SomeSub
If
IsInteger (a) = true Then
b=a
End
If
End
Sub
Sub
IsInteger (x)
If
x = Int(x) Then
Return true
Else
Return false
End
If
End
Sub