Created
October 31, 2012 12:57
-
-
Save JeffCohen/3986887 to your computer and use it in GitHub Desktop.
Week 5 Ruby Challenge
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 :name | |
attr_accessor :hometown | |
def bio | |
# Add code here | |
end | |
end | |
person_object = Person.new | |
person_object.name = "Jeff" | |
person_object.hometown = "Chicago" | |
puts person_object.bio | |
# The above code should result in displaying: | |
# | |
# Jeff is from Chicago |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment