Guest User

Untitled

a guest
Aug 8th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. class Animal
  3.  
  4. def initialize(dogClass)
  5. dog_1 = initialize_dog dogClass
  6. dog_2 = initialize_dog dogClass
  7. end
  8.  
  9. def initialize_dog(dogClass)
  10. dog = dogClass.new
  11. dog
  12. end
  13.  
  14. def pick
  15. self.dog_1.eat # eat is a method in the dogClass
  16. end
  17.  
  18. end
Advertisement
Add Comment
Please, Sign In to add comment