Hi, Elan, you wrote:
I copied the stuff as you wrote it into the REBOL console and added one
more, important expression after creating the object 'b:
>> b: make a [num: num + 1]
This additional expression was probe b
>> probe b
make object! [
num: 2
messages:
make object! [
get-num: func [
sent...
obj [object!]
param
][obj/num
]
]
]
----------------------
If still not convinced, try this:
>> a/messages/get-num: "8^)"
== "8^)"
>> probe b
No copy can behave like that...
-Ladislav
