You can add a new task to the To Do List.
You can add a priority to the task.
You can delete a task from the To Do List.
You can list all your tasks in the To Do list.
You can find all tasks matching a keyword.
You can mark a task as done once you have completed it.
todo
- Adds a ToDo TaskExample of usage:
todo Read a book
Expected outcome:
Got it! I have added this task:
[T][✘] Read a book
Now you have 4 tasks in the list.
deadline
- Adds a Deadline TaskExample of usage:
deadline Read a book /by 15-09-2020 12:00
Expected outcome:
Got it! I have added this task:
[D][✘] Read a book (by: 15 Sep 2020, 12:00 PM )
Now you have 4 tasks in the list.
event
- Adds a Event TaskExample of usage:
event CS2103T tutorial /at 15-09-2020 12:00
Expected outcome:
Got it! I have added this task:
[E][✘] CS2103T tutorial (by: 15 Sep 2020, 12:00 PM )
Now you have 4 tasks in the list.
priority /add
- Adds a Priority to TaskTypes of priority: HIGH, MEDIUM, LOW
Format: priority /add [index] [priority]
Example of usage:
priority /add 1 HIGH
Expected outcome:
Noted. I've add priority to this task
[T][✘] Read book Priority: HIGH
priority /update
- Update Priority of TaskTypes of priority: HIGH, MEDIUM, LOW
Format: priority /update [index] [priority]
Example of usage:
priority /update 1 HIGH
Expected outcome:
Noted. I've update priority to this task
[T][✘] Read book Priority: HIGH
priority /delete
- Delete Priority of TaskTypes of priority: HIGH, MEDIUM, LOW
Format: priority /delete [index]
Example of usage:
priority /delete 1
Expected outcome:
Noted. I've delete priority to this task
[T][✘] Read book
list
- List all the tasksExample of usage:
list
Expected outcome:
Here are the tasks in your list:
1. [T][✘] Read a book
2. [T][✘] Return book
find
- Find all the tasks matching keywordFormat: find [keyword]
Example of usage:
find read
Expected outcome:
Here are the matching tasks in your list:
1. [T][✘] Read a book
done
- Mark task as doneFormat: done [index]
Example of usage:
done 1
Expected outcome:
Nice! I have marked this task as done:
1. [T][✓] Read a book
delete
- Delete a taskFormat: delete [index]
Example of usage:
delete 1
Expected outcome:
Noted! I have removed this task:
1. [T][✓] Read a book
bye
- Exit the chatbotExample of usage:
bye
Expected outcome:
Bye! Hope to see you again soon!