Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created August 8, 2014 23:35
Show Gist options
  • Save pumpkincouture/55e59d1c80f9c978afce to your computer and use it in GitHub Desktop.
Save pumpkincouture/55e59d1c80f9c978afce to your computer and use it in GitHub Desktop.
def choice
puts "Welcome to Tic Tac Toe. Please choose your level : press e for easy and h for hard."
player_choice = gets.chomp
player_choice.upcase!
if player_choice == "H"
player_choice
elsif player_choice == "E"
player_choice
else
puts "That's not a valid choice. Please try again."
choice
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment