ruby excercise for name.lenth.t_s

131 views Asked by At

the excercise in the book says that I should ask for the names individually and then get the name length. I am stuck on the 8th line? Is that what I am supposed to do to get the name?

    puts "What\'s your first name?"
    first = gets.chomp
    puts "What\'s your middle name?"
    middle = gets.chomp
    puts "What\'s your last name?"
    last = gets.chomp
    puts "So, your full name is #{first} #{middle} #{last}." 
    name = # {first} #{middle} #{last}
    puts "Did you know that are + #{name.length.t_s} + characters "
    puts "in your + name + "

Thank you so much for your help!

1

There are 1 answers

5
Aleksei Matiushkin On

It should be (using ruby string embedding):

name = "#{first} #{middle} #{last}"

http://www.ruby-doc.org/core-2.0/String.html