Rebol Programming/bind?

USAGE: edit

BIND? words 

DESCRIPTION: edit

Returns the context in which a word is bound.

BIND? is a native value.

ARGUMENTS edit

  • words -- (Type: any-word)

SOURCE CODE edit

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