Guest User

Untitled

a guest
Oct 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. irb(main):001:0> 1.class
  2. => Integer
  3. irb(main):002:0> 1.to_s
  4. => "1"
  5. irb(main):003:0> class Integer
  6. irb(main):004:1> def to_s
  7. irb(main):005:2> "two"
  8. irb(main):006:2> end
  9. irb(main):007:1> end
  10. => :to_s
  11. irb(main):008:two> 1.to_s
  12. => "two"
  13. irb(main):009:two> 3.to_s
  14. => "two"
  15. # WHAT HAVE I DONE TO MY LIFE?!
Add Comment
Please, Sign In to add comment