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

3 lines
96 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(loop for (key value) on plist :by 'cddr
do (format t "~&Key: ~a, Value: ~a." key value))