Skip to content

Instantly share code, notes, and snippets.

@wearethefoos
Created October 26, 2015 13:45
Show Gist options
  • Select an option

  • Save wearethefoos/44786129e27c9b108bd4 to your computer and use it in GitHub Desktop.

Select an option

Save wearethefoos/44786129e27c9b108bd4 to your computer and use it in GitHub Desktop.
def show_menu
puts "
Catalogue
-------------
1) Cat
2) Goldfish
3) Dog
4) Horse
Pick a product (1 - 4):"
choice = gets.chomp.to_i
if choice < 1 || choice > 4
put "That's not a valid option, please try again!"
show_menu
end
return choice
end
choice = show_menu
puts choice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment