Skip to content

Instantly share code, notes, and snippets.

@masonfmatthews
Created December 19, 2014 19:01
Show Gist options
  • Save masonfmatthews/076faf741cc53cd45c58 to your computer and use it in GitHub Desktop.
Save masonfmatthews/076faf741cc53cd45c58 to your computer and use it in GitHub Desktop.
class Shirt
def initialize(c)
@color = c
end
def number_of_arms
2
end
def color
@color
end
def color=(d)
@color = c
end
def self.default_color
"Blue"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment