Last Modified: 1/17/2021
Returns program execution to the line after the last GoSub command, or returns the value from a user defined function.
| Name | Type | Required | Description |
| Expression | Integer/Long | No | The value to return when executing a function. |
| Syntax: Return [<Expression>] |
|
GoSub MyLabel Print "World" End MyLabel: Print "Hello "; Return |