Skip to content

Instantly share code, notes, and snippets.

@amar47shah
Created February 6, 2016 18:29
Show Gist options
  • Save amar47shah/3f67e8d35818afc9e132 to your computer and use it in GitHub Desktop.
Save amar47shah/3f67e8d35818afc9e132 to your computer and use it in GitHub Desktop.
puts "Welcome to the Game!"
puts "What's your name?"
name = gets.chomp
puts "Hi, #{name}!"
puts "How old are you"
age = gets.chomp
puts "Hi, #{age}"
puts "where are you from"
reigion = gets.chomp
puts "You are from #{reigion}"
puts "Are you going to vote for Donalad Trump"
trump = gets.chomp
if trump=="yes"
puts " Thank God"
end
if trump=="no"
puts "How could you"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment