> I think I have found another bug then. If I do as you suggest I
get the
> following results:
>
> main!: [
>     name: "Mike"
>     sub: make object! [
>         name: "sub-name"
>         function: "sub-func"
>     ]
> ]
>
> >> main: make main! [ name: "Joe" ]
> == [name: "Joe"]
> >> probe main
> [name: "Joe"]
> == [name: "Joe"]
>
> Let me know if you see the same results and I will submit it as
a
> "Undocumented
> Feature" .
>
>
> Mike Yaunish
> [EMAIL PROTECTED]
>

Hi, try the following instead:

    main: make object! append copy main! [name: "Joe"]

Regards
    Ladislav

Reply via email to