Rebol Programming/return

USAGE:

edit
RETURN value 

DESCRIPTION:

edit

Returns a value from a function.

RETURN is a native value.

ARGUMENTS

edit
  • value -- (Type: any-type)

SOURCE CODE

edit
return: native[
    "Returns a value from a function." 
    value [any-type!]
]