Last active
August 29, 2015 14:01
-
-
Save vinhnglx/a40d4863170c664c08ad to your computer and use it in GitHub Desktop.
An simple example about attr_accessor
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 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