Home / lang / return 
RETURN
Syntax
RETURN [ Expression ]

Quits a procedure or a function by returning the value of Expression.

If you return from a procedure, then you cannot specify any expression.

If you return from a function, and Expression is not specified, then the value returned is the default value associated with the return datatype of the function.


See also
Datatypes