Add three type of tasks that are classified as:
Remove a task that is determined by the user.
Find a task using keyword(s) that is specified by the user.
Mark a specified task fulfilled or unmark a task that is not fulfilled.
In addition to adding a deadline task, user can store a deadline period.
e.g., Finish tp project by Fri 30th Sept
In addition to adding an event task, user can store an event location.
e.g., Club meeting at NUS Utown
When user types a bye
command, the bot will exit and stop.
todo
- Add a todo taskInput the command todo
followed by the task detail.
Automatically saves the specified todo task to a list of tasks.
Example of usage:
todo join NUS Drone Club
Expected outcome:
Displays an acknowledgment message to confirm the creation of
todo task and inform the user the number of tasks in the task list.
____________________________________________________________
Roger that. I've added this task:
[T][ ] join NUS Drone Club
Now you have 1 in the list.
____________________________________________________________
deadline
- Add a deadline taskInput the command deadline
followed by the task detail & deadline period.
Automatically saves the specified deadline task to a list of tasks.
Example of usage:
deadline return book /by Sunday
Expected outcome:
Displays an acknowledgment message to confirm the creation of
deadline task and inform the user the number of tasks in the task list.
____________________________________________________________
Roger that. I've added this task:
[D][ ] return book (by: June 6th)
Now you have 2 in the list.
____________________________________________________________
event
- Add an event taskInput the command event
followed by the task detail & event location.
Automatically saves the specified event task to a list of tasks.
Example of usage:
event project meeting /at NUS Utown
Expected outcome:
Displays an acknowledgment message to confirm the creation of
event task and inform the user the number of tasks in the task list.
____________________________________________________________
Roger that. I've added this task:
[E][ ] project meeting (at: NUS Utown)
Now you have 3 in the list.
____________________________________________________________
mark
- Mark task as doneInput the command mark
followed by index of chosen task.
Example of usage:
mark 1
Expected outcome:
Marks the specified task to be done denoted as ‘X’ and
display an acknowledgment message to confirm the specified task completion.
____________________________________________________________
Awesome! I've marked this task as done:
[T][X] read book
____________________________________________________________
unmark
- Mark task as not doneInput the command unmark
followed by index of chosen task.
Example of usage:
unmark 1
Expected outcome:
Unmark the specified task as not done denoted as [ ] of the right box and
display an acknowledgment message to confirm the specified task is not done.
____________________________________________________________
Awesome! I've marked this task as not done yet:
[T][ ] read book
____________________________________________________________
delete
- Delete a taskInput the command delete
followed by index of chosen task.
Example of usage:
delete 1
Expected outcome:
The specified task would be deleted from the list of tasks and
displays an acknowledgment message for the user to confirm the deleted task.
Will reflect the number of task left in the list.
____________________________________________________________
Noted. I've removed this task:
[T][ ] read book
Now you have 6 tasks in the list.
____________________________________________________________
Find
- Find task(s)Input the command find
followed by keyword(s).
Example of usage:
find book
Expected outcome:
A list of tasks would be shown that matches the keyword(s) i.e., ‘book’.
____________________________________________________________
Here are the matching tasks in your list:
1.[D][ ] return book (by: June 6th)
2.[T][ ] borrow book
3.[D][ ] return book (by: Sunday)
____________________________________________________________
bye
- Exit Flash bot program (Shut down)Input the command bye
.
Example of usage:
bye
Expected outcome:
Exit from Flash bot and a goodbye message will be display to confirm shut down.
____________________________________________________________
Bye. Hope to see you again soon!
____________________________________________________________