Difference between revisions of "RETURN"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | |||
==Class== | ==Class== | ||
Applications | Applications | ||
Line 51: | Line 50: | ||
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Commands]] | [[Category:Commands]] | ||
+ | [[Category:Applications]] | ||
+ | [[Category:Applications Commands]] |
Revision as of 12:15, 4 June 2009
Contents
Class
Applications
Purpose
Return from a procedure, function, or program
Syntax
RETURN [TO MASTER] [<exp>]
See Also
FUNCTION, ON ERROR, ON ESCAPE, ON KEY, PROCEDURE, RETRY, SET PROCEDURE
Description
The RETURN statement closes the active program file, releases memory variables and arrays defined as private, and passes control back to the calling program. The RETURN statement is also used to denote the end of a procedure definition.
TO MASTER
If the TO MASTER is specified, then control is passed back to the highest level calling procedure.
<exp>
If the optional <exp> is specified, it will be returned to the calling program if the procedure or function was called as a User Defined Function.
Example
procedure example_1 do example_2 // Returns here <--------------- return procedure example_2 do example_3 return procedure example_3 if .T. return to master //------------^ endif return do example_1
Products
Recital Database Server, Recital Mirage Server, Recital Terminal Developer