RETURN¶
Function¶
RETURN from subroutine.
Syntax¶
RETURN
Examples¶
10 GOSUB 100
100 PRINT 1
200 RETURN
Remarks¶
RETURN is the logical conclusion of a GOSUB statement. Placed at the end of the subroutine, RETURN causes execution to continue at the next statement following the original GOSUB statement.