This app is to help user create, edit and store a task list.
- Ensure you have Java 11 installed in your Computer.
- Download the jar file from (link).
- Copy the file to the folder you want to use as the home folder for your Duke app
- Double-click the file to start the app.
If the setup is correct, you should see something like the below:

- Type the command in the command box and press Enter to execute it.
Some example commands you can try:todo read a bookdeadline return books /by 2pmevent attend the tutorial /at Friday 4pmlist- show the task listdone 1- mark the first task in list as donedelete 2- delete the second task in the listbye- exit the program
- Refer to the Features below for details of each command.
##Features
- Add
- Add todo
todo - Add deadline
deadline - Add event
event
- Add todo
- List
list - Delete
delete - Mark as done
done - Find
find - Exit
bye
Add a new task to the task list
- add todo task:
todo
Format:todo TASK
Examples:todo read a book - add deadline task:
deadline
Format:deadline TASK /by TIME
Examples:deadline return books /by 2pm - add event task:
event
Format:event TASK /at TIME
Examples:event attend tutorial /at Friday 4pm
For the deadline and event,
the app also accepts dates in a format such as yyyy-mm-dd format (e.g., 2019-10-15) and print in a different format such as MMM dd yyyy e.g., (Oct 15 2019)
Format: deadline TASK /by YYYY-MM-DD
Examples: deadline return books /by 2020-11-20
Show the task list
Format: list
Delete a task from task list
Format: delete INDEX
Examples: delete 2
Mark a task as done
Format: done INDEX
Examples: done 1
Find task in task list with keyword
Format: find KEYWORD
Examples: find book
Exit the program
Format: bye
| Actions | Formats | Examples |
|---|---|---|
| todo | todo TASK |
todo read a book |
| deadline | deadline TASK /by TIME |
deadline return books /by 2pm |
| event | event TASK /at TIME |
event attend the tutorial /at Friday 4pm |
| list | list |
|
| delete | delete INDEX |
delete 2 |
| done | done INDEX |
done 1 |
| find | find KEYWORD |
find book |
| exit | bye |










