Skip to content

Instantly share code, notes, and snippets.

@brunoadacosta
Last active August 29, 2015 14:17
Show Gist options
  • Save brunoadacosta/fd32bc8097dc693d121c to your computer and use it in GitHub Desktop.
Save brunoadacosta/fd32bc8097dc693d121c to your computer and use it in GitHub Desktop.
class User
def name
@name
end
def name=(name)
@name = name
end
def age
@age
end
def age=(age)
@age = age
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment