Adds a task onto the list
Delet a task from the list
Update the states of the task from incompleted to completed.
Display all tasks added.
Find tasks in the list.
todo - Adds a todo to listDescribe action and its outcome.
Example of usage:
todo read book
Expected outcome:
Got it. I've added this task:
[T][✘] read book
Now you have 1 tasks in the list.
Deadline - Adds a Deadline to listDescribe action and its outcome.
Example of usage:
deadline read book /by 11/09/2019 1200
Expected outcome:
Got it. I've added this task:
[D][✘] read book (by: 11/09/2019 1200)
Now you have 2 tasks in the list.
Event - Adds a Event to listDescribe action and its outcome.
Example of usage:
event read book /at 11/09/2019 1200
Expected outcome:
Got it. I've added this task:
[E][✘] read book (at: 11/09/2019 1200)
Now you have 3 tasks in the list.
Done - Mark the task as done.Describe action and its outcome.
Example of usage:
done 1
Expected outcome:
Nice! I've marked this task as done:
[✓]read book
delete - Delete the task from the list.Describe action and its outcome.
Example of usage:
delete 1
Expected outcome:
Noted. I've removed this task:
[T][✓] read book
Now you have 2 tasks in the list.
find - Find the task from the list.Describe action and its outcome.
Example of usage:
find read book
Expected outcome:
1.[T][✘] read book
2.[D][✘] read book (by: 11/09/2019 1200)
3.[E][✘] read book (at: 11/09/2019 1200)