RosettaCodeData/Task/Hash-from-two-arrays/PicoLisp/hash-from-two-arrays.l
2023-07-01 13:44:08 -04:00

3 lines
98 B
Text

(let (Keys '(one two three) Values (1 2 3))
(mapc println
(mapcar cons Keys Values) ) )