[REBOL] Re: Refinements
From: rotenca:telvia:it at: 14-Nov-2002 16:58
Hi Jan,
> I ended up defining the corresponding local logical variables
> instead, so I can or- them together if needed. Moreover, I removed
> the refinements from a worker function, and just call it with
> explicit arguments 'debug and 'step. The worker is not to
> be used directly (unless for a testing), so it does not make much
> sense to maintain the refinements at that very low level.
Sometime i make:
context [
foo: func [left right ][print [left right]]
system/words/foo: func [/left /right ][foo left right]
]
---
Ciao
Romano