Rebol Programming/bind
USAGE:
editBIND words known-word /copy
DESCRIPTION:
editBinds words to a specified context.
BIND is a native value.
ARGUMENTS
edit- words -- A block of words or single word. (Type: block any-word)
- known-word -- A reference to the target context. (Type: any-word object port)
REFINEMENTS
edit- /copy -- Deep copies block before binding it.
SOURCE CODE
editbind: native[ "Binds words to a specified context." words [block! any-word!] "A block of words or single word." known-word [any-word! object! port!] "A reference to the target context." /copy "Deep copies block before binding it." ]