Rebol Programming/unprotect

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

USAGE:[edit | edit source]

UNPROTECT value 

DESCRIPTION:[edit | edit source]

Unprotects a word or block of words.

UNPROTECT is a native value.

ARGUMENTS[edit | edit source]

  • value -- (Type: word block)

SOURCE CODE[edit | edit source]

unprotect: native[
    "Unprotects a word or block of words." 
    value [word! block!]
]