Skip to content

Instantly share code, notes, and snippets.

@cheeyeo
Created November 2, 2010 11:19
Show Gist options
  • Save cheeyeo/659494 to your computer and use it in GitHub Desktop.
Save cheeyeo/659494 to your computer and use it in GitHub Desktop.
A generic interface example
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