summaryrefslogtreecommitdiff
path: root/print.lisp
blob: ed02b1c31081caba3e6c3fefb5462112ebb6dc98 (plain)
1
2
3
4
5
6
(in-package #:print)

(defun table (tbl)
  (maphash (lambda (k v)
             (format t "Key: ~a, Value: ~a" k v))
           tbl))