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. -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
