Created
September 8, 2014 15:28
-
-
Save gmcinnes/32ee7c24b3ee6b36067a to your computer and use it in GitHub Desktop.
Delegation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Car | |
def init(type_of_car) | |
@engine = EngineFactory.new(type_of_car) | |
end | |
def start | |
@engine.start | |
end | |
def stop | |
@engine.stop | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment