- This wiki is out of date, use the continuation of this wiki instead
Return
From FenixWiki
(Difference between revisions)
Sandman (Talk | contribs)
(New page: Category:reserved Category:language Category:Basic statement == Definition == '''Return''' [<value>]; Return is a reserved word used to return a value in a function. The retu...)
Next diff →
Revision as of 10:56, 24 April 2008
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