< Rebol Programming

USAGE:

UNBIND words /deep 

DESCRIPTION:

Unbinds words from context.

UNBIND is a native value.

ARGUMENTS

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

REFINEMENTS

  • /deep -- Include nested blocks

SOURCE CODE

unbind: native[
    "Unbinds words from context." 
    words [block! any-word!] "A block of words or single word (returned)" 
    /deep "Include nested blocks"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.