Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class Tevye
  2.  
  3. def live
  4. sunrise
  5. sunset
  6. l_chaim!
  7. toil_in_anatevka
  8. :pauper
  9. end
  10.  
  11. def rich_man?
  12. false
  13. end
  14.  
  15. private
  16.  
  17. def method_missing(method, *args)
  18. nil
  19. end
  20.  
  21. def toil_in_anatevka
  22. if self.rich_man?
  23. throw :miracle_of_miracles, 'Emigrated to the Cayman Islands'
  24. end
  25. end
  26.  
  27. end
Add Comment
Please, Sign In to add comment