Rebol Programming/value?

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

VALUE? value 

DESCRIPTION:[edit | edit source]

Returns TRUE if the word has been set.

VALUE? is a native value.

ARGUMENTS[edit | edit source]

  • value -- (Type: any)

SOURCE CODE[edit | edit source]

value?: native[
    "Returns TRUE if the word has been set." 
    value
]