Guest User

Untitled

a guest
Jun 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. puts 'Hello there! What is your name?'
  2. f_name = gets.chomp
  3. puts 'How about a middle name?'
  4. m_name = gets.chomp
  5. puts 'and last name?'
  6. l_name = gets.chomp
  7. puts 'Wow, ' +f_name+m_name+l_name + 'is such a nice name! Your parents did well!'
Add Comment
Please, Sign In to add comment