Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
IO 0.31 KB | None | 0 0
  1. x := Object clone do(
  2.         children := List clone
  3.         r := method(
  4.                 self children foreach(c, c print)
  5.                 self children foreach(c, c ?r)
  6.                 self children foreacn(c, c print)
  7.         )
  8. )
  9.  
  10. y := x clone
  11. x children append(y)
  12. "start" print
  13. x r print
  14. "end" print
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement