REBOL Programming/unset

From Wikibooks, open books for an open world
< REBOL Programming
Jump to: navigation, search

Contents

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"
]