Guest User

Untitled

a guest
Nov 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. require 'delegate'
  2.  
  3. class LolRuby < SimpleDelegator
  4. def +(x)
  5. __getobj__ + (x * 10)
  6. end
  7. end
  8.  
  9. def add_one(x)
  10. x + 1
  11. end
  12.  
  13. add_one(LolRuby.new(1)) # => 11
  14. add_one(1) # => 2
Add Comment
Please, Sign In to add comment