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

[REBOL] dictionaries

From: SunandaDH:aol at: 16-Feb-2006 12:10

Carlo:
> If i have two identical word, how can i use the second without > "delete"(replace) the first?
Namespaces have been whispered as part of REBOL 3.0, but no date for that. The nearest equivalent is objects (aka contexts): context1: make object! [var1: 10] context2: make object! [var1: 100] print context1/var1 + context2/var1 Sunanda.