Hi Gabriele,

> BTW, I just found out this curious behavior:
>
> >> find first system/words to-word "never-defined-this"
> == none
> >> find first system/words to-word "never-defined-this"
> == [never-defined-this]
>
> which  shows  that  using  TO-WORD  the  word gets added AFTER the
> evaluation  of  that  expression.  I cannot give an explanation of
> this;  it  might  be  some  kind  of  side  effect  of the current
> implementation   (this   is   REBOL/View   1.2.8.3.1  3-Aug-2002);
> Ladislav, Romano, do you have any ideas?

this is just an evaluation order artifact - FIRST SYSTEM/WORDS isn't a
"living thing", it is just a "freezed copy". You can get a normal behaviour,
if you try this:

    in rebol/words to-word "never-defined-this" ; == never-defined-this

, while:

    in rebol/words first to-block "never-defined-this-2" ; == none

Cheers
-L

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to