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

[REBOL] Re: Embedded objects.

From: sunandadh:aol at: 12-Mar-2003 18:45

Terry:
> How can I embed BobsDog into Bob
Here's one way -- with the usual proviso that it isn't the same Bob -- we've replaced one with another. BobsDog: make object! [name: "Rex"] Bob: make object! [name: "Bob"] Bob: make Bob reduce [to-set-word 'BobsDog BobsDog] Bob/BobsDog/Name == "Rex" Sunanda.