Rebol Programming/bind?

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
BIND? words 

DESCRIPTION:

[edit | edit source]

Returns the context in which a word is bound.

BIND? is a native value.

ARGUMENTS

[edit | edit source]
  • words -- (Type: any-word)

SOURCE CODE

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