End of procedure with a return value.
Allows a procedure to return a value, effectively turning it into a function. The RETURN instruction sends that value back to the call point.
Can also be used with non local procedures.
return e
e value
Source print (goto "plus", 10, 5) label "plus" local param ?a param ?b ?x = ?a + ?b return ?xExecution 15
