Guest User

Untitled

a guest
Apr 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class FooTwo
  2. def bar
  3. puts "bar"
  4. end
  5.  
  6. def cap_bar
  7. def bar
  8. puts "BAR!!!"
  9. end
  10. end
  11. end
  12.  
  13. foo_two = FooTwo.new
  14. foo_two.bar # outputs "bar"
  15. foo_two.cap_bar
  16. foo_two.bar # outputs "BAR!!!"
Add Comment
Please, Sign In to add comment