Created
June 8, 2016 03:42
-
-
Save blooberr/85e2a0b3a87bef3b9f4bf8467a2ced2a to your computer and use it in GitHub Desktop.
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 | |
end | |
def rank | |
@rank | |
end | |
def rank=(r) | |
# you can do other stuff in here | |
@rank = r | |
end | |
end | |
c = Card.new | |
c.rank = 5 | |
puts c.rank |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment