This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts 'Hello there, and what\'s your name?' | |
name = gets | |
pp name | |
name = name.chomp | |
pp name | |
puts 'Your name is ' + name + '? What a lovely name!' | |
puts 'Pleased to meet you, ' + name + '. :)' |