RosettaCodeData/Task/Associative-array-Iteration/Common-Lisp/associative-array-iteration-4.lisp

3 lines
128 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(loop for key being each hash-key of hash-table using (hash-value value)
do (format t "~&Key: ~a, Value: ~a." key value))