Skip to content

Instantly share code, notes, and snippets.

@m3talsmith
Created October 12, 2010 04:10
Show Gist options
  • Save m3talsmith/621649 to your computer and use it in GitHub Desktop.
Save m3talsmith/621649 to your computer and use it in GitHub Desktop.
def ask_name
@name = ""
puts "What is your first name?"
@name = gets.chomp
puts "And you middle name?"
@name += " #{gets.chomp}"
puts "And finally, what is your last name?"
@name += " #{gets.chomp}"
puts "So your full name is #{@name}? (y/n)"
answer = gets.chomp.downcase
if answer == "y"
puts "Well that's a fine name!"
else
ask_name
end
end
ask_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment