I wanted to use "Use" in Red but it seems it is quite different from use in Rebol, looking into help:
In Red:
>> help use
cause-error function! Causes an immediate error throw, w...
In Rebol
>> help use
USAGE:
USE words body
DESCRIPTION:
Defines words local to a block.
USE is a native value.
ARGUMENTS:
words -- Local word(s) to the block (Type: block word)
body -- Block to evaluate (Type: block)
>>
Is there an equivalent of Use in Red (/local or function not enough) so as to have block scope and not just function scope ?