Returning a value using the RETURN statement

The RETURN statement returns a single integer value to the calling environment, causing an immediate exit from the procedure.

Prerequisites

There are no prerequisites for this task.

Task
  1. Execute the following statement:
    RETURN expression
  2. The value of the supplied expression is returned to the calling environment. Use an extension of the CALL statement to save the return value in a variable:
    CREATE VARIABLE returnval INTEGER;
    returnval = CALL variable/procedure-name? myproc();

A value is returned and saved as a variable.