Created
November 2, 2010 11:19
-
-
Save cheeyeo/659494 to your computer and use it in GitHub Desktop.
A generic interface example
This file contains hidden or 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 Vehicle | |
def start_engine | |
# start the engine | |
end | |
def stop_engine | |
#stop the engine | |
end | |
end | |
class Car < Vehicle | |
def sunday_drive | |
start_engine | |
stop_engine | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment