From 42014cb6d5706f80d47ac2dbab7353ce832ee1e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Tom=C3=A1s?= Date: Fri, 4 Nov 2022 02:03:49 -0300 Subject: Simplify output of print:table --- print.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'print.lisp') 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)) -- cgit v1.2.3