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

[REBOL] Re: [RWEBOL] HOF and system exploration

From: rotenca:telvia:it at: 23-Oct-2002 20:13

Hi Jan Skibinski
> {So what are the other words for? A garbage or contents of definition?}
When a word is loaded also as a simple value, it is added to the global context. Why? I do not know. But i know that using un-loaded words can trig a crash error under some conditions. find mold first system/words "foo"; == none load "[foo]"; == [foo] last first system/words; == foo This generates an un-loaded word: find mold first system/words "foo2"; == none to-block "foo2" ;== [foo2] last first system/words; == foo --- Ciao Romano