Skip to content

Instantly share code, notes, and snippets.

@vito
Created January 14, 2011 21:58
Show Gist options
  • Save vito/780343 to your computer and use it in GitHub Desktop.
Save vito/780343 to your computer and use it in GitHub Desktop.
[0]> A = Object clone
<object (delegates to 1 object)>
[1]> B = Object clone
<object (delegates to 1 object)>
[2]> C = Object clone
<object (delegates to 1 object)>
[3]> A2 = Object clone
<object (delegates to 1 object)>
[4]> A2 = A clone
<object (delegates to 1 object)>
[5]> B2 = B clone
<object (delegates to 1 object)>
[6]> C2 = C clone
<object (delegates to 1 object)>
[7]> A x: B y: C := @abc
@ok
[8]> A2 x: B y: C := @a2bc
@ok
[9]> A x: B2 y: C := @ab2c
@ok
[10]> A2 x: B2 y: C
@a2bc
[11]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment