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.
todo
Adds todo task to the task list.
Format: todo DESCRIPTION
Example: todo Pick up groceries
deadline
Adds task with deadline to the task list.
Format: deadline DESCRIPTION /by DATE_TIME
Example: deadline submit quiz /by 2020-20-20 2020
event
Adds an event task to the task list.
Format: event DESCRIPTION /at DATE_TIME
Example: event Hair for hope /at 2020-20-20 2020
list
List all current task in the task list.
Format” list
find
List all task that contains the keyword.
Format: find KEYWORD
delete
Deletes Task at the given index.
Format: delete INTEGER_VALUE...
Example: delete 1 2 3 4
done
Mark task as done at the given index.
Format: done INTEGER_VALUE...
Example: done 1 2 3 4
bye
Exit the program and saves the list of tasks.
Format: bye
todo
DESCRIPTION
deadline
DESCRIPTION /by DATE_TIME
event
DESCRIPTION /at DATE_TIME
delete
INTEGER_VALUE...
done
INTEGER_VALUE...
find
KEYWORD
list
bye