Guest User

Untitled

a guest
Jan 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.15 KB | None | 0 0
  1. class Point
  2.     attr_accessor :content
  3. end
  4.  
  5. a=Point.new
  6. a.content="foo"
  7.  
  8. b=a.dup
  9.  
  10. a.content="bla"
  11. p b.content #outputs foo. so it is deep copied?
Add Comment
Please, Sign In to add comment