Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Rebol pickling recipes ?

From: lmecir:mbox:vol:cz at: 7-Oct-2002 16:29

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