Rebol Programming/quote

USAGE:

edit
QUOTE :value 

DESCRIPTION:

edit

Returns the value passed to it without evaluation.

QUOTE is a function value.

ARGUMENTS:

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

SOURCE CODE

edit
quote: func [
    "Returns the value passed to it without evaluation." 
    :value [any-type!]
][
    return get/any 'value
]