Skip to content

Instantly share code, notes, and snippets.

@postazure
Last active August 29, 2015 14:09
Show Gist options
  • Save postazure/948fb0dcf8cf84a8a764 to your computer and use it in GitHub Desktop.
Save postazure/948fb0dcf8cf84a8a764 to your computer and use it in GitHub Desktop.
submenu example
if user_input == "create"
method_create
elsif user_input == "delete"
method_delete
elsif user_input == "edit tasks"
task_input = gets.chomp
if task_input == "add"
add_task
elsif task_input == "delete"
delete_task
elsif task_input == "complete"
complete_task
end
else
exit
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment