Return |
Previous Next |
Return [<Value>]
|
Part
|
Description
|
<Value>
|
Required. The value is required only when returning a value from a
function. If used without a GoSub command, a stack underrun error
will be thrown.
|
GoSub MyLabel
Print "World"
End
MyLabel:
Print "Hello ";
Return
|