julia> mutable struct Foo w endjulia> p=Foo(0)Foo(0)julia> q=pFoo(0)julia> p.w=11julia> qFoo(1)julia> p=Foo(2)Foo(2)julia> qFoo(1)