Rebol Programming/unset

USAGE:Edit

UNSET word 

DESCRIPTION:Edit

Unsets the value of a word.

UNSET is a native value.

ARGUMENTSEdit

  • word -- Word or block of words (Type: word block)

SOURCE CODEEdit

unset: native[
    "Unsets the value of a word." 
    word [word! block!] "Word or block of words"
]