Rebol Programming/get
USAGE:
GET word /any
DESCRIPTION:
Gets the value of a word or values of an object.
GET is a native value.
ARGUMENTS
- word -- Word to get (Type: any-word object none)
REFINEMENTS
- /any -- Allows any type of value, even unset.
SOURCE CODE
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."
]