Rebol Programming/use
USAGE:
editUSE words body
DESCRIPTION:
editDefines words local to a block.
USE is a native value.
ARGUMENTS
edit- words -- Local word(s) to the block (Type: block word)
- body -- Block to evaluate (Type: block)
SOURCE CODE
edituse: native[ "Defines words local to a block." words [block! word!] "Local word(s) to the block" body [block!] "Block to evaluate" ]