Rebol Programming/unbind

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

USAGE:[edit | edit source]

UNBIND words /deep 

DESCRIPTION:[edit | edit source]

Unbinds words from context.

UNBIND is a native value.

ARGUMENTS[edit | edit source]

  • words -- A block of words or single word (returned) (Type: block any-word)

REFINEMENTS[edit | edit source]

  • /deep -- Include nested blocks

SOURCE CODE[edit | edit source]

unbind: native[
    "Unbinds words from context." 
    words [block! any-word!] "A block of words or single word (returned)" 
    /deep "Include nested blocks"
]