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

[REBOL] Re: Business Object Versioning

From: anton:lexicon at: 6-Apr-2002 1:14

> > 1. Add a new variable and value to an object > Oh, and your problem 1 is already catered for with 'make... > > >> obj: make obj [c: 30] > Carl Read
No, it creates a new object. Now we have two objects. The value of 'obj has shifted from the old object to the new one. Anything that was referring to the old object will not be able to see the "changes". Of course, the above approach is useful, but to modify an object in place cannot be done right now. Anton.