Skip to content

Instantly share code, notes, and snippets.

@Ank13
Created February 16, 2014 14:09
Show Gist options
  • Save Ank13/9034759 to your computer and use it in GitHub Desktop.
Save Ank13/9034759 to your computer and use it in GitHub Desktop.
puts "Rock, Paper, Scissors, shoot!"
puts "(enter your choice)"
user_choice = gets.chomp.downcase
choices = ["rock", "paper", "scissors"]
computer_choice = choices[rand(3)]
puts "The computer chooses #{computer_choice}!"
puts "Tie!" if user_choice == computer_choice
if user_choice == "scissors" && computer_choice == "paper" ||
user_choice == "rock" && computer_choice == "scissors" ||
user_choice == "paper" && computer_choice == "rock"
puts "You win"
else
puts "You lose!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment