Notes on format:
UPPER_CASE are parameters supplied by the user.
e.g. in todo DESCRIPTION, DESCRIPTION can be used as todo buy groceries.... Means multiple input is allowed.
todoAdds todo task to the task list.
Format: todo DESCRIPTION
Example: todo Pick up groceries
deadlineAdds task with deadline to the task list.
Format: deadline DESCRIPTION /by DATE_TIME
Example: deadline submit quiz /by 2020-20-20 2020
eventAdds an event task to the task list.
Format: event DESCRIPTION /at DATE_TIME
Example: event Hair for hope /at 2020-20-20 2020
listList all current task in the task list.
Format” list
findList all task that contains the keyword.
Format: find KEYWORD
deleteDeletes Task at the given index.
Format: delete INTEGER_VALUE...
Example: delete 1 2 3 4
doneMark task as done at the given index.
Format: done INTEGER_VALUE...
Example: done 1 2 3 4
byeExit the program and saves the list of tasks.
Format: bye
todo DESCRIPTIONdeadline DESCRIPTION /by DATE_TIMEevent DESCRIPTION /at DATE_TIMEdelete INTEGER_VALUE...done INTEGER_VALUE...find KEYWORDlistbye