return
return (expression)
Terminates the function. In the second case the given expression is returned
as result to the calling function, where it can be evaluated.
Parameters:
expression - value to be returned, like a variable, expression or pointer.
Example:
var compute_days(var age, var days)
{
return age * days;
}
See also:
function,
expression
► latest
version online