Skip to content

Instantly share code, notes, and snippets.

@nafidurmus
Created August 2, 2019 11:22
Show Gist options
  • Save nafidurmus/c99f5e0b505c004f281922948673f022 to your computer and use it in GitHub Desktop.
Save nafidurmus/c99f5e0b505c004f281922948673f022 to your computer and use it in GitHub Desktop.
class Car
def initialize(engine)
@engine = engine
end
end
class StraightSixEngine
def start
end
def stop
end
end
class V8Engine
def start
end
def stop
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment