Starter code for the Duke project
todo
deadline
event
done
delete
find
list
clc
bye
Zapato is a task manager to keep all your todos, deadlines,and events in one place. It is a great CLI application to organize all yours tasks. If you are interested in using this application, go to the quick start to get started.
java -jar iP.jar
Command format:
todo
Adds a todo task to the task list
Format: todo [description]
Example: todo return book
deadline
Adds a deadline task to the task list. It can be given either a time (24-cycle), date, or both.
Format: deadline [description] /by [dd-mm-yyyy] [hh:mm]
Example: deadline submit tax form /by 15-04-2020 23:59
event
Adds an event task to the task list
Format: event [description /at [place/time]
Example: event project meeting /at COM1
done
Marks a task as done
Format: done [task #]
Example:
done 3
delete
Removes a task from the task list
Format: delete [task #]
Example:
delete 1
find
Finds the tasks with the given pattern found in their description
Format: find [pattern]
Example:
find homework
list
Lists all the tasks in the task list
Format: list
clc
Clears the terminal or command prompt window
Format: clc
bye
Exits the program at any point
Format: bye
Q: How do I save my tasks after I exit my application?
A: No need to worry, tasks are saved automatically when any changes are made to the list.
Todo todo [description]
eg. todo go to the store
Deadline deadline [description] /by [dd-mm-yyyy] [hh:mm]
eg. deadline finish book /by 07-03-2020 15:30
Event event [description /at [place/time]
eg. event dinner /at Chick-fil-A
Done done [task #]
eg. done 1
Delete delete [task #]
eg. delete 4
Find find [pattern]
eg. find appointment
List list
Clear clc
Exit bye