< Rebol Programming
USAGE:
QUOTE :value
DESCRIPTION:
Returns the value passed to it without evaluation.
QUOTE is a function value.
ARGUMENTS:
- value -- (Type: any-type)
SOURCE CODE
quote: func [
"Returns the value passed to it without evaluation."
:value [any-type!]
][
return get/any 'value
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.