Rebol Programming/unset

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
UNSET word 

DESCRIPTION:

[edit | edit source]

Unsets the value of a word.

UNSET is a native value.

ARGUMENTS

[edit | edit source]
  • word -- Word or block of words (Type: word block)

SOURCE CODE

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