Skip to content

Instantly share code, notes, and snippets.

@jmoon90
Created November 26, 2013 18:32
Show Gist options
  • Select an option

  • Save jmoon90/7663427 to your computer and use it in GitHub Desktop.

Select an option

Save jmoon90/7663427 to your computer and use it in GitHub Desktop.
class Card
def initialize(rank, suit)
@suit = suit
@rank = rank
end
def rank
@rank
end
def suit
@suit
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment