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

[REBOL] Re: The truth about scope --- mistake correction

From: mokkel::gmx::de at: 16-Apr-2005 2:30

I made a mistake at point two, which has to be corrected: 2) words have a context, which is a mapping of words with different spelling to a value-slot of each word ------------------------------------------------ a: b: c: 1 d: next "hallo" e: head d context-table: word -- value-slot a -- (1) b -- (1) c -- (2) d -- (|**,2) ;**this particular pointer gets copied and the position changed by next | (h)-(a)-(l)-(l)-(o) \ \ e -- (|**,1) Of course every word has its own value-slot in the context. Only if references are involved then the value-slots of more objects can contain references to the same object. Michael