Created
May 9, 2012 15:17
-
-
Save mdarby/2645398 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 Person | |
attr_accessor :first_name, :last_name | |
def full_name | |
"#{first_name} #{last_name}" | |
end | |
end | |
matt = Person.new | |
matt.first_name = "Matt" | |
matt.last_name = "Darby" | |
puts matt.full_name | |
=> "Matt Darby" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment