diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-11-04 02:03:49 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-11-04 02:03:49 -0300 |
commit | 42014cb6d5706f80d47ac2dbab7353ce832ee1e1 (patch) | |
tree | 1f55106b2b6e2575a6fd55bdca813464d1e37bfe | |
parent | 8d4413a1856b5e6d3906a3a078997e71e1de9b68 (diff) | |
download | utils-42014cb6d5706f80d47ac2dbab7353ce832ee1e1.tar.gz utils-42014cb6d5706f80d47ac2dbab7353ce832ee1e1.zip |
Simplify output of print:table
-rw-r--r-- | print.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |