Rebol Programming/unset

USAGE:

edit
UNSET word 

DESCRIPTION:

edit

Unsets the value of a word.

UNSET is a native value.

ARGUMENTS

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

SOURCE CODE

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