It works if the word already exists in the object.

Mike.

>> test-object: make object! [x: "string"]
>> print test-object/x
string
>> set in test-object 'x "new value"
== "new value"
>> print test-object/x
new value
>>



Reply via email to