Search found 1 match

by mohsen
Sun Dec 05, 2010 7:35 pm
Forum: Common Lisp
Topic: what is cd in (cd *db*)?
Replies: 4
Views: 5008

what is cd in (cd *db*)?

In Practical Common Lisp there's a code that helps display a list in a much cleaner form (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 fi...