1 2 3 4 5 6
(in-package #:print) (defun table (tbl) (maphash (lambda (k v) (format t "~a : ~a~&" k v)) tbl))