v1.2
- Added a Booklist class to store books borrowed by the user.
- Added a MeritScore class to keep track if the user can borrow a book.
- Added a Book class to create a new book object.
- Added a Borrow command to allow users to borrow a book.
- Added a Return command to allow users to return a book.
- Added a Donate command to allow users to donate a book.
User needs a merit score greater than 0 to borrow a book.
If a user borrows a book, the merit score will reduce by 1.
If a user donates or returns a book, the merit score will increase by 1.
Currently, a user can only borrow one book at a time.