Skip to content

Instantly share code, notes, and snippets.

@blooberr
Created June 8, 2016 03:42
Show Gist options
  • Save blooberr/85e2a0b3a87bef3b9f4bf8467a2ced2a to your computer and use it in GitHub Desktop.
Save blooberr/85e2a0b3a87bef3b9f4bf8467a2ced2a to your computer and use it in GitHub Desktop.
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