Add a task to todo list.
Deletes one or more task from todo list.
Lists all tasks in todo list.
Marks one or more tasks as done.
Searches for tasks containing input keyword.
Exits from program.
todo
- Add a todo taskAdds a todo task to todo list and shows whether the addition is successful.
Example of usage:
todo read book
Expected outcome:
Got it. I've added this task:
[T][×] read book
Now you have 1 task in the list.
event
- Add an event taskAdds an event task to todo list and shows whether the addition is successful.
Example of usage:
event project meeting /at 6/8/2019 2015
Expected outcome:
Got it. I've added this task:
[E][×] project meeting (at: Tue Aug 06 20:15:00 SGT 2019)
Now you have 2 tasks in the list.
deadline
- Add a deadline taskAdds a deadline task to todo list and shows whether the addition is successful.
Example of usage:
deadline return book /by 6/6/2019 0000
Expected outcome:
Got it. I've added this task:
[D][×] return book (by: Thu Jun 06 00:00:00 SGT 2019)
Now you have 3 tasks in the list.
delete
- delete a taskDeletes one or more tasks by specifying their numbers and shows deleted tasks.
Example of usage:
delete 1 2
Expected outcome:
Noted. I've removed these tasks:
[T][×] read book
[E][×] project meeting (at: Tue Aug 06 20:15:00 SGT 2019)
Now you have 1 task in the list.
Example of usage:
delete 1
Expected outcome:
Noted. I've removed these tasks:
[T][×] read book
Now you have 2 tasks in the list.
list
- list all tasksShows all the task in todo list in the order of addition time.
Example of usage:
list
Expected outcome:
Here are the tasks in your list:
1.[T][×] read book
2.[E][×] project meeting (at: Tue Aug 06 20:15:00 SGT 2019)
done
- mark as doneMarks one or more tasks as done by specifying their numbers and shows whether the action is successful.
Example of usage:
done 1 2
Expected outcome:
Nice! I've marked these tasks as done:
[T][√] read book
[E][√] project meeting (at: Tue Aug 06 20:15:00 SGT 2019)
Example of usage:
done 1
Expected outcome:
Nice! I've marked these tasks as done:
[T][√] read book
find
- search a taskSearches for all tasks with given keyword and shows the matching tasks.
Example of usage:
find book
Expected outcome:
Here are the matching tasks in your list:
1.[T][√] read book
bye
- ExitExits program and closes the window.
Example of usage:
bye
Expected outcome:
nil.