Rebol Programming/get

USAGE:Edit

GET word /any 

DESCRIPTION:Edit

Gets the value of a word or values of an object.

GET is a native value.

ARGUMENTSEdit

  • word -- Word to get (Type: any-word object none)

REFINEMENTSEdit

  • /any -- Allows any type of value, even unset.

SOURCE CODEEdit

get: native[
    "Gets the value of a word or values of an object." 
    word [any-word! object! none!] "Word to get" 
    /any "Allows any type of value, even unset."
]