Rebol Programming/bound?

USAGE:

BOUND? words 

DESCRIPTION:

Returns the context in which a word is bound.

BOUND? is a native value.

ARGUMENTS

  • words -- (Type: any-word)

SOURCE CODE

bound?: native[
    "Returns the context in which a word is bound." 
    words [any-word!]
]