Jump to content

Rebol Programming/bound?

From Wikibooks, open books for an open world

USAGE:

[edit | edit source]
BOUND? words 

DESCRIPTION:

[edit | edit source]

Returns the context in which a word is bound.

BOUND? is a native value.

ARGUMENTS

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

SOURCE CODE

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