scheme struct question
- by qzar
;; definition of the structure "book"
;; author: string - the author of the book
;; title: string - the title of the book
;; genre: symbol - the genre
(define-struct book (author title genre))
(define lotr1 (make-book "John R. R. Tolkien"
"The Fellowship of the Ring"
'Fantasy))
(define glory…