Skip to content

Instantly share code, notes, and snippets.

@vanmichael
Created November 26, 2013 15:36
Show Gist options
  • Save vanmichael/7660549 to your computer and use it in GitHub Desktop.
Save vanmichael/7660549 to your computer and use it in GitHub Desktop.
Example 2 for getters in Launch Academy
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