Guest User

Untitled

a guest
Apr 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Bike
  2. attr_accessor :brand, :color
  3.  
  4. def initialize(brand, color)
  5. @brand = brand
  6. @color = color
  7. end
  8.  
  9. end
  10.  
  11. bike = Bike.new(:schwinn, :red)
  12. puts bike.color
  13. puts bike.brand
  14.  
  15. # WHERE'S MY BIKE???
Add Comment
Please, Sign In to add comment