Skip to content

Instantly share code, notes, and snippets.

View lucky_ajax.md
View P5: OO Inheritance.rb
class Vehicle
attr_reader :status, :wheels
def initialize(args)
@color = args[:color]
@wheels = args[:wheels]
@status = :stopped
end