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

2 lines
128 B
Common Lisp

(loop for key being each hash-key of hash-table using (hash-value value)
do (format t "~&Key: ~a, Value: ~a." key value))