| OUTPUT (OP) | |
| Syntax | OUTPUT object OP object |
| Explanation | OUTPUT makes its input the output of the procedure. OUTPUT can only be used within a procedure. After the object of OUTPUT is run, control returns to the calling procedure or to toplevel.
|
| Examples | HYPOT calculates the hypotenuse of an isosceles right triangle with the Pythagorean Theorem (C*C = A*A + B*B) and uses OUTPUT to send that value to the ISOS procedure.
TO HYPOT :SIDE
|