Guest User

Untitled

a guest
May 27th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1.  
  2. class A
  3. def == (other)
  4. if other.is_a? B
  5. special_equals(b)
  6. else
  7. super
  8. end
  9. end
  10. def special_equals(other)
  11. ...
  12. end
  13. end
Add Comment
Please, Sign In to add comment