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

[REBOL] Re: On mutability and sameness

From: joel:neely:fedex at: 6-Jun-2001 17:00

Hi, Ladislav, I'm not Volker, but may I play??? Ladislav Mecir wrote:
> try to mutate/alter (i.e. not replace) the first element of BLOCK: > > block: [1/1/2001] > > Regards > Ladislav >
Do you mean something like the following?
>> blk: [1/1/2001] == [1-Jan-2001] >> blk/1/day == 1 >> blk/1/day: 2 == 2 >> blk == [2-Jan-2001]
Hence my belief that DATE! values now are actually mutable (sort of). -jn-