Created
November 26, 2013 15:36
-
-
Save vanmichael/7660549 to your computer and use it in GitHub Desktop.
Example 2 for getters in Launch Academy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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