Skip to content

Instantly share code, notes, and snippets.

View jschmotzer's full-sized avatar

John Schmotzer jschmotzer

View GitHub Profile
class Vehicle
attr_reader :wheels, :color
def initialize(args)
@wheels = args[:wheels]
@color = args[:color]
end
def drive
@status = :driving
end