This is a project template for a greenfield Java project. It's named after the Java mascot Duke. Given below are instructions on how to use it.
Prerequisites: JDK 17 installed, jar file downloaded
- Run "java -jar Jerry.jar" in your terminal, ensure you are in the directory where you stored Jerry.jar
- Enter a command from the list below
- list - print the list of tasks
- mark x - mark task number 'x' as done
- unmark x - mark task number 'x' as not done
- todo string - create a todo with the description "string"
- deadline string /by date - create a deadline with description "string" and deadline "date"
- event string /from start /to end - create an event with description "string", start time "start" and end time "end"
- delete x - remove task number 'x' from the list
- find string - display tasks which description contains "string"
- bye - exits the program
Warning: Keep the src\main\java folder as the root folder for Java files (i.e., don't rename those folders or move Java files to another folder outside of this folder path), as this is the default location some tools (e.g., Gradle) expect to find Java files.