Guest User

Untitled

a guest
Apr 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Foo < Array
  2. def +( arg )
  3. Foo.new( super( arg ) )
  4. end
  5. end
  6.  
  7. a = Foo.new
  8. b = Foo.new
  9.  
  10. c = a + b
  11. p a.class, b.class
  12. p c.class
Add Comment
Please, Sign In to add comment