The RETURN statement returns a single integer value to the calling environment, causing an immediate exit from the procedure. The RETURN statement takes the form:
RETURN expression
The value of the supplied expression is returned to the calling environment. To save the return value in a variable, an extension of the CALL statement is used:
CREATE VARIABLE returnval INTEGER ; returnval = CALL myproc() ;