Rebol Programming/bound?

USAGE:

edit
BOUND? words 

DESCRIPTION:

edit

Returns the context in which a word is bound.

BOUND? is a native value.

ARGUMENTS

edit
  • words -- (Type: any-word)

SOURCE CODE

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