Skip to content

Instantly share code, notes, and snippets.

@vinhnglx
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinhnglx/a40d4863170c664c08ad to your computer and use it in GitHub Desktop.
Save vinhnglx/a40d4863170c664c08ad to your computer and use it in GitHub Desktop.
An simple example about attr_accessor
class User
attr_accessor :first_name, :last_name, :birthday
end
# Results
# user = User.new
# user.first_name = "Vinh"
# user.first_name => "Vinh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment