Here's the link to the page: Chapter 3, Practical: A Simple Database. Essentially I have a database of lists with four values that I want to display. This is done with
(defun dump-db ()
(dolist (cd *db*)
(format t "~{~a:~10t~a~%~}~%" cd)))
The only problem is that the output isn't quite right:
TITLE: Home
ARTIST: Dixie Chicks
RATING: 9
RIPPED: T
... (Shortened for brevity)
For some reason "Home" doesn't start in the 10th column, can someone tell me why? I'm using SBCL to run the code, most recent version.