/**
 * Name:
 * 
 * PennKey:
 * 
 * Description: This record represents an abstraction of a book from the
 * perspective of a potential reader.
 */

public record Book(String title, String author, int releaseYear, int pageCount, double rating) {
}