summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2022-11-04 02:03:49 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2022-11-04 02:03:49 -0300
commit42014cb6d5706f80d47ac2dbab7353ce832ee1e1 (patch)
tree1f55106b2b6e2575a6fd55bdca813464d1e37bfe
parent8d4413a1856b5e6d3906a3a078997e71e1de9b68 (diff)
downloadutils-42014cb6d5706f80d47ac2dbab7353ce832ee1e1.tar.gz
utils-42014cb6d5706f80d47ac2dbab7353ce832ee1e1.zip
Simplify output of print:table
-rw-r--r--print.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/print.lisp b/print.lisp
index ed02b1c..1ea7932 100644
--- a/print.lisp
+++ b/print.lisp
@@ -2,5 +2,5 @@
(defun table (tbl)
(maphash (lambda (k v)
- (format t "Key: ~a, Value: ~a" k v))
+ (format t "~a : ~a~&" k v))
tbl))