Skip to content

Instantly share code, notes, and snippets.

@kyrylo
Created January 12, 2012 21:58
Show Gist options
  • Save kyrylo/1603403 to your computer and use it in GitHub Desktop.
Save kyrylo/1603403 to your computer and use it in GitHub Desktop.
class Suit
def red?; not black?; end
end
class Heart < Suit
def black?; false; end
end
class Diamond < Suit
def black?; false; end
end
class Spade < Suit
def black?; true; end
end
class Club < Suit
def black?; true; end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment