Adds a task to task list. Types of tasks are Todo, Event and Task.
Deletes a task from task list.
Marks a task as done.
Finds all tasks containing given keyword.
Moves a task to the top of task list and label it as HIGH priority.
Displays all tasks in the task list.
Exits the bot.
Example of usage:
todo wash clothes
Expected outcome:
Got it. I've added this task:
[T][✘] wash clothes
Now you have 1 task in the list.
Example of usage:
event meeting /at 2020-09-20
Expected outcome:
Got it. I've added this task:
[E][✘] meeting (at: Sep 20 2020)
Now you have 2 tasks in the list.
Example of usage:
deadline quiz /by 2020-09-20
Expected outcome:
Got it. I've added this task:
[D][✘] deadline quiz (by: Sep 20 2020)
Now you have 3 task in the list.
Example of usage:
delete 1
Expected outcome:
Noted. I've removed this task:
[T][✘] wash clothes
Now you have 2 tasks in the list.
Example of usage:
done 1
Expected outcome:
Nice! I've marked this task as done:
[E][✓] meeting (at: Sep 20 2020)
Example of usage:
find quiz
Expected outcome:
Here are the matching task(s) in your list:
1.[D][✘] deadline quiz (by: Sep 20 2020)
Example of usage:
prioritize 1
Expected outcome:
Noted. I've prioritized this task:
[D][✘] deadline quiz (by: Sep 20 2020)
Example of usage:
list
Expected outcome:
Here are the tasks in your list:
1.[D][✘] deadline quiz (by: Sep 20 2020) !!!HIGH priority!!!
2.[E][✓] meeting (at: Sep 20 2020)
Example of usage:
bye
Expected outcome:
Bye. Hope to see you again soon!