Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # File: cars-7.rb
  2. #
  3. class Car
  4. def initialize(make, model, color)
  5. @make = make
  6. @model = model
  7. @color = color
  8. end
  9.  
  10. attr_accessor :make, :model, :color
  11. end
  12.  
  13. def print_values(values, column_size)
  14. ... same as +cars-6.rb+ ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement