< Rebol Programming

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."
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.