Skip to content

Instantly share code, notes, and snippets.

@martennilsson
Created February 9, 2012 08:07
Show Gist options
  • Save martennilsson/1778278 to your computer and use it in GitHub Desktop.
Save martennilsson/1778278 to your computer and use it in GitHub Desktop.
class Car
attr_accessor :engine
def initialize(engine)
@engine = engine
end
def start_engine
@engine.start
end
def stop_engine
@engine.stop
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment