Hello from
_____ _ _
| __ \ | | | |
| | | | ___ | |__ | |__ _ _
| | | |/ _ \| '_ \| '_ \| | | |
| |__| | |_| | |_) | |_) | |_| |
|_____/ \___/|_.__/|_.__/ \__, |
__/ |
|___/
Meet Dobby, your personal task manager to help you stay organised and on top of all your tasks
#Add Tasks Dobby allows you to add various types of tasks such as todo, deadline, and event.
#Mark Tasks You can mark tasks as completed to keep track of your progress.
#Delete Tasks Remove tasks that are no longer needed from your task list.
#Find Tasks Search for tasks containing specific keywords to quickly locate relevant tasks.
#List Tasks List all tasks in task list
todo
- Add a todo TaskAdds a todo task to your task list.
format: todo < description >
Example of usage:
todo Buy lunch
Expected outcome:
deadline
- Add a Deadline TaskAdds a task with a deadline to your task list.
format: deadline < description > /by < deadline >
Example of usage:
Deadline complete assignment /by today 9pm
Expected outcome:
event
- Add a event TaskAdds a event to your task list.
format: event < description > /from < start time/date > /to < end time/date >
Example of usage:
event formula 1 race /from sunday 9pm /to 11pm
Expected outcome:
mark
- Mark a Task as DoneMarks a task as completed.
format: mark < task index >
Example of usage:
mark 1
Expected outcome:
unmark
- Mark a Task as UndoneMarks a completed task as undone.
format: unmark < task index >
Example of usage:
unmark 1
Expected outcome:
delete
- Delete a TaskRemoves a task from your task list.
format: delete < task index >
Example of usage:
delete 1
Expected outcome:
find
- Find Tasks by KeywordSearches for tasks containing specific keywords. returns a list of tasks with matching keywords
format: find < keyword >
Example of usage:
find formula
Expected outcome:
list
- Lists all TasksLists all tasks in task list including current status and task type
format: list
Example of usage:
list
Expected outcome:
bye
- exits dobbyends the program
format: bye