Skip to content

Instantly share code, notes, and snippets.

@cefaijustin
Created April 19, 2018 02:57
Show Gist options
  • Save cefaijustin/766e915865129ba0125be0b8599fab29 to your computer and use it in GitHub Desktop.
Save cefaijustin/766e915865129ba0125be0b8599fab29 to your computer and use it in GitHub Desktop.
class Bike
attr_accessor :brand, :color
def initialize(brand, color)
@brand = brand
@color = color
end
end
bike = Bike.new(:schwinn, :red)
puts bike.color
puts bike.brand
# WHERE'S MY BIKE???
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment