Skip to content

Instantly share code, notes, and snippets.

@cefaijustin
Created April 19, 2018 02:59
Show Gist options
  • Save cefaijustin/c7ca51a8c875f92253c7e22edace1ca8 to your computer and use it in GitHub Desktop.
Save cefaijustin/c7ca51a8c875f92253c7e22edace1ca8 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