diff options
Diffstat (limited to 'print.lisp')
-rw-r--r-- | print.lisp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/print.lisp b/print.lisp new file mode 100644 index 0000000..ed02b1c --- /dev/null +++ b/print.lisp @@ -0,0 +1,6 @@ +(in-package #:print) + +(defun table (tbl) + (maphash (lambda (k v) + (format t "Key: ~a, Value: ~a" k v)) + tbl)) |