Rebol Programming/unbind

USAGE:

edit
UNBIND words /deep 

DESCRIPTION:

edit

Unbinds words from context.

UNBIND is a native value.

ARGUMENTS

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

REFINEMENTS

edit
  • /deep -- Include nested blocks

SOURCE CODE

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