, Backsic - Code 3D Games in Your Browser

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
evalue
Sourceprint (goto "plus", 10, 5) label "plus" local param ?a param ?b ?x = ?a + ?b return ?x Execution15