Rebol Programming/unset
USAGE:
UNSET word
DESCRIPTION:
Unsets the value of a word.
UNSET is a native value.
ARGUMENTS
- word -- Word or block of words (Type: word block)
SOURCE CODE
unset: native[
"Unsets the value of a word."
word [word! block!] "Word or block of words"
]