Skip to content

Instantly share code, notes, and snippets.

@justuseapen
Created November 26, 2013 16:05
Show Gist options
  • Save justuseapen/7660992 to your computer and use it in GitHub Desktop.
Save justuseapen/7660992 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