In Practical Common Lisp there's a code that helps display a list in a much cleaner form
dolist (var list-form [result-form]) declaration* {tag | statement}*
but I i can't quite figure out what cd is in (cd *db*)
could someone help me crack this one?
That would be great!!
Thanks,
-m
(defun dump-db ()
(dolist (cd *db*)
(format t "~{~a:~10t~a~%~}~%" cd)))
The syntax for dolist is described as dolist (var list-form [result-form]) declaration* {tag | statement}*
but I i can't quite figure out what cd is in (cd *db*)
could someone help me crack this one?
That would be great!!
Thanks,
-m