Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Shirt
  2. def initialize(c)
  3. @color = c
  4. end
  5.  
  6. def number_of_arms
  7. 2
  8. end
  9.  
  10. def color
  11. @color
  12. end
  13.  
  14. def color=(d)
  15. @color = c
  16. end
  17.  
  18. def self.default_color
  19. "Blue"
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement