Guest User

Untitled

a guest
Jun 24th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Pet
  2. attr_accessor :name, :age, :gender, :color
  3. end
  4.  
  5. class Dog < Pet
  6. def bark
  7. print "Woof"
  8. end
  9. end
  10.  
  11. class Snake < Pet
  12. def bark
  13. print "Sssss"
  14. end
  15. end
  16.  
  17. class Cat < Pet
  18. end
Add Comment
Please, Sign In to add comment