The documentation is very poor concerning objects because there is a 
paragragh in the objects documentation as follows...


The in function can also be used to set words:
        set in fred 'balance $20.00

        print fred/balance
        $20.00


This paragraph is telling me I can set a new value into an existing object 
using the following syntax...

set in object 'word value

But obviously it doesn't work.


The following does work, however, and thank you for the help.

-Ryan

> >> ob1: make object! [x: "hello"]
> >> ob1: make ob1 [y: "world"]
> >> probe ob1
> 
> make object! [
>     x: "hello"
>     y: "world"
> ]


Reply via email to