This course will be retired on June 1, 2025.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
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 upRelated 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