Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # File: cars-6.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_reader :make, :model, :color
  11. attr_writer :make, :model, :color
  12. end
  13.  
  14. def print_values(values, column_size)
  15. ... same as +cars-5.rb+ ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement