![]() |
<< Index >> |
FutureBasic 5 |
return | statement | |
|
return ["label"]
return
statement in every subroutine that is called by a gosub
statement. return
causes the subroutine to "exit"; that is, it causes execution to continue at the statement following the gosub
that called the subroutine.return "label"
. This pops the return address from the stack, then jumps to the requested address.