Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. puts "Welcome to the Game!"
  2.  
  3. puts "What's your name?"
  4. name = gets.chomp
  5.  
  6. puts "Hi, #{name}!"
  7.  
  8. puts "How old are you"
  9. age = gets.chomp
  10.  
  11. puts "Hi, #{age}"
  12.  
  13. puts "where are you from"
  14. reigion = gets.chomp
  15.  
  16. puts "You are from #{reigion}"
  17.  
  18. puts "Are you going to vote for Donalad Trump"
  19. trump = gets.chomp
  20.  
  21. if trump=="yes"
  22. puts " Thank God"
  23. end
  24. if trump=="no"
  25. puts "How could you"
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement