return Statement
Purpose:
Cause program to return to the line immediately after the call statement
Syntax:
return
Comments:
The return statement must be on a line by itself
Example:
call mylabel
print "done"
halt
mylabel:
// do something