box-o-sand/oldstuff/lrthw-remnants/ex14-ec.rb
2015-06-22 13:15:42 -05:00

29 lines
670 B
Ruby

user = ARGV.first
prompt = '~: '
puts "Hi #{user}, I'm the #{$0} script."
puts "I'd like to ask you a few questions."
puts "Do you like me #{user}?"
print prompt
likes = STDIN.gets.chomp
puts "Where do you live #{user}?"
print prompt
lives = STDIN.gets.chomp
puts "What kind of computer do you have?"
print prompt
computer = STDIN.gets.chomp
puts "What's your favorite name for a dog?"
print prompt
dogname = STDIN.gets.chomp
puts <<MESSAGE
Alright, so you said #{likes} about liking me.
You live in #{lives}. Not sure where that is.
And you have a #{computer} computer. Nice.
You also said that your favorite name for a
dog is #{dogname}. Works for me.
MESSAGE