RosettaCodeData/Task/Associative-array-Iteration/Common-Lisp/associative-array-iteration-3.lisp
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

3 lines
107 B
Common Lisp

(maphash (lambda (key value)
(format t "~&Key: ~a, Value: ~a." key value))
hash-table)