blob: 2f61a7667550fa10f9dd22332df0ebceb97aced3 [file] [log] [blame]
// Print the titles of all books in the library
for (book in t_book.all) {
book.a_title.println();
}
// Print the publication year of each book
for (book in t_book.all) {
book.e_published.text.println();
}
// Print the authors of each book
for (book in t_book.all) {
book.c_author.collect(a|a.text).concat(", ").println();
}