[REBOL] Re: Parsing comment
From: lmecir:mbox:vol:cz at: 27-Sep-2002 17:42
Hi Pat,
this is a matter of personal preference. I always use the TO function.
(speed, generality)
Speaking about personal preferences: I am eliminatig the usage of functions
with unevaluated arguments and I suggest everyone to do that (see my Rep for
the reasons). The only reason I used them in my example is, that they change
the evaluation order in an unexpected way, which is normally a bad thing
(IMO - this is another point where my POV differs from Tim Peters').
----- Original Message -----
From: "pat665"
Hi Ladislav,
Could you explain a bit your code ? especially this line
print: func ['x] [reduce ['print to paren! x]]
Why is it not
print: func ['x] [reduce ['print to-paren x]]
Ciao
Patrick