Rebol Programming/unbind

USAGE:Edit

UNBIND words /deep 

DESCRIPTION:Edit

Unbinds words from context.

UNBIND is a native value.

ARGUMENTSEdit

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

REFINEMENTSEdit

  • /deep -- Include nested blocks

SOURCE CODEEdit

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