Return

From Bennu Wiki
Revision as of 21:27, 28 October 2011 by 190.173.23.200 (talk) (→‎Example: missing " in example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Definition

Return [<value>];

Return is a reserved word used to return a value in a function. The returned value must be of the datatype specified as the returndatatype (see Function). By default, the returntype of a process or function is an int. When this statement is reached, the function in which it resides will stop execution and return the specified value. If a value was not specified, the ProcessID will be returned.

Example

Function string example_function()
Private
    string s;
Begin
    s = "Some string";
    return s;
End

Used in example: Function, Private, Begin, End, Return, String