Advertisement
Guest User

Untitled

a guest
Oct 12th, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. >> x: context [ foo: context [ bar: copy [] ] ]
  2. >> append x/foo/bar 10
  3. == [10]
  4. >> y: make x []
  5. >> append y/foo/bar 20
  6. == [10 20]
  7. >> ?? x
  8. x: make object! [
  9. foo: make object! [
  10. bar: [10 20]
  11. ]
  12. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement