[ Object ] copy

>> x := 1.
>> y := x.
>> z := x copy.
x add: 1.
Out write: x, stop.
Out write: y, stop.
Out write: z, stop.
2
2
1