call Statement
Purpose:
To call a label for execution
Syntax:
call mylabel
Comments:
The label must exist in the program
Example:
print "done"
halt
mylabel:
// do something
print "in mylabel"
return
program output below
in mylabel
done