Skip to content

Instantly share code, notes, and snippets.

/index.rb Secret

Created October 16, 2015 22:55
Show Gist options
  • Save anonymous/8909ecabffb10b926611 to your computer and use it in GitHub Desktop.
Save anonymous/8909ecabffb10b926611 to your computer and use it in GitHub Desktop.
whats wrong with this?
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