Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAlphonse Cuccurullo
2,513 PointsConfused on this syntax error.
class Name
attr_reader(:title, :first, :middle, :Last)
attr_writer(:title)
def initialize(title, first, middle, last)
@title = title
@first = first
@middle = middle
@last = last
end
end
name = Name.new ("Mr", "Ally", "", "Cuccurullo")
puts name.title = " " +
name.first + " " +
name.middle+ " " +
name.last
puts "title: #{name.title} "
name.title = "dr"
puts "title: #{name.title} "
its telling me on line rb:16 unexpected ',' expecting end-of-input. What does that mean?
Alphonse Cuccurullo
2,513 PointsHi, i tried it and am getting the same thing.
1 Answer
Cena Mayo
55,236 PointsHi Alphonse,
Try changing your ':Last' variable to :last in the attr_reader :)
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsHello! Can you try this? I think this is what you want: