I've just discovered arather crazy behavior of hashs inside an object - they don't seem to be unique!
Succinct example:
>> aa: make object! [ h: make hash! [] ]
>> bb: make aa []
>> append aa/h [ 1 2 ]
== make hash! [1 2]
>> probe bb
make object! [
h: make hash! [1 2]
]
>>
Why in the world is aa/h the same object as bb/h ? This is a real pain
to say the least.
Dave
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.
