3 lines
107 B
Common Lisp
3 lines
107 B
Common Lisp
(maphash (lambda (key value)
|
|
(format t "~&Key: ~a, Value: ~a." key value))
|
|
hash-table)
|