Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
In this video, we create a simple class. The class will be modeled after the concept of a name and return the different attributes a name might have.
Code Samples
class Name
def title
"Mr."
end
def first_name
"Jason"
end
def middle_name
""
end
def last_name
"Seifer"
end
end
name = Name.new
puts name.title
puts name.first_name
puts name.middle_name
puts name.last_name
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Kamala Jain
1,678 Points2 Answers
-
dotz
6,733 PointsIs there a way to call the puts method on all of the methods within in the class Name in this video?
1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up