Guest User

Untitled

a guest
Jun 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Animal
  2. end
  3.  
  4. class Person < Animal
  5. def speak
  6. put "hello"
  7. end
  8.  
  9. def legs
  10. return 2
  11. end
  12. end
  13.  
  14. class Dog < Animal
  15. def speak
  16. print "woof"
  17. end
  18. end
  19.  
  20. rob = Person.new
  21. rob.speak
Add Comment
Please, Sign In to add comment