Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Animal
- def initialize(dogClass)
- dog_1 = initialize_dog dogClass
- dog_2 = initialize_dog dogClass
- end
- def initialize_dog(dogClass)
- dog = dogClass.new
- dog
- end
- def pick
- self.dog_1.eat # eat is a method in the dogClass
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment