-
-
Save anonymous/8909ecabffb10b926611 to your computer and use it in GitHub Desktop.
whats wrong with this?
This file contains 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 menuDefault (choice) #main menu | |
case choice | |
when 1 | |
newGame() | |
when 2 | |
loadGame() | |
when 3 | |
optMenu() | |
end | |
end | |
puts "1. New Game" | |
puts "2. Load Game" | |
puts "3. Options" | |
userInput = gets.chomp.to_i | |
menuDefault(userInput) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment