Created
August 8, 2014 23:35
-
-
Save pumpkincouture/55e59d1c80f9c978afce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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