[REBOL] Re: On mutability and sameness
From: sanghabum:aol at: 5-Jun-2001 12:33
Hi Joel
> Conclusions? I'm not sure, except that I haven't figured out
> a simple model for what's going on with DATE! values, and
> therefore don't have a simple model for REBOL values in general.
Some of it might simply be oversights in the depth of the Rebol code. Take
another example, this one with tuples:
>> mytuple: 1.2.3.4.5
== 1.2.3.4.5
>> poke mytuple 3 88
== 1.2.88.4.5
>> mytuple/2: 99
== 99
>> mytuple
== 1.99.3.4.5
>>
The Poked 88 has vanished! Magic!! Or maybe just a fault awaiting a fix.
(Reported as helpdesk ref #5630)
--Colin.