Guest User

Untitled

a guest
Apr 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Person
  2.  
  3. def self.section(str, &blk)
  4. self.class_eval(&blk)
  5. end
  6.  
  7. end
  8.  
  9. class Joe < Person
  10. def name; "Joe"; end
  11.  
  12. section "speaking methods" do
  13. def say_hi
  14. "Hi"
  15. end
  16. end
  17. end
Add Comment
Please, Sign In to add comment