Skip to content

Instantly share code, notes, and snippets.

@GrantStenger
GrantStenger / to_do_list
Last active August 14, 2016 00:46
Ruby To-Do List
#Modules
module Menu
def start
"Help yourself to one of the following: \n 1) Start New List\n 2) Open Saved List \n Q) Quit "
end
def options
"Options: \n 1) Complete Task\n 2) Add Task\n 3) Edit Task\n 4) Delete Task\n 5) View Completed Tasks\n 6) Save List\n Q) Go Back to Menu"
end
end