RosettaCodeData/Task/Hash-from-two-arrays/Common-Lisp/hash-from-two-arrays-3.lisp
2025-08-11 18:05:26 -07:00

3 lines
183 B
Common Lisp

(let ((table (rosetta-code-hash-from-two-arrays #(foo bar baz) #(123 456 789))))
(loop for key being the hash-keys of table do
(format t "~a => ~a~%" key (gethash key table))))