NUS cs2103t individual project.
Duke is a Chat-like task manager.
Duke.jar
Users are able to add tasks of 3 following types:
todo / t
- Add an Todo taskFormat:
todo (your task description)
Example of usage:
todo read book
Expected outcome:
deadline / dl
- Add an Deadline taskFormat:
deadline (your task description) /by (time)
Example of usage:
deadline return book /by 2020-10-10
Expected outcome:
event / e
- Add an Event taskFormat:
event (your task description) /at (time)
Example of usage:
event team meeting /at Monday 4-6pm
Expected outcome:
Users are able to list all tasks or using keyword:
list / ls
- List all the tasksFormat:
list
Expected outcome:
find / f
- Find all the tasks containing the keywordFormat:
find (keyword)
Example of usage:
find book
Expected outcome:
Users are able to mark a certain task as done.
done
- Mark done a certain taskFormat:
done (task index)
Example of usage:
done 1
Expected outcome:
Users are able to remove a certain task from task list.
delete / remove / del
- Remove a certain taskFormat:
delete (task index)
Example of usage:
delete 3
Expected outcome: