NUStudy is a desktop app for managing study hours, optimised for use via a command-line interface (CLI).
java -jar ./path/to/NUStudy.jar
Add a course to the course book
Format: add <course code>
Example: add CS2113
Expected output:
Good Job! I have added CS2113
Add a course study session to the course book
Format: add <course code> <study duration (in hours)>
Example: add CS2113 5
Expected output:
Good Job! You have studied 5 hours for CS2113
Show a list of all courses in course book
Format: list
Expected output:
List of courses
1. CS2113
2. CS1231
3. MA1501
Show a list of all study sessions for a course in the system
Format: list <course code>
Example: list CS2113
Expected output:
List of Study Sessions
1. CS2113 - 3 hours
2. CS2113 - 1 hours
3. CS2113 - 4 hours
Delete the specific course in the course book
Format: delete <course code>
Example: delete CS2113
Expected output:
NOTE: We have deleted CS2113 from Course Book
Exit the NUStudy program
Format: exit
Expected output:
Exiting App. Goodbye!
add cs2113
add cs2113 5
list
list CS2113
delete CS2113
exit