Rebol Programming/bound?

USAGE:Edit

BOUND? words 

DESCRIPTION:Edit

Returns the context in which a word is bound.

BOUND? is a native value.

ARGUMENTSEdit

  • words -- (Type: any-word)

SOURCE CODEEdit

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