RosettaCodeData/Task/Hash-from-two-arrays/PicoLisp/hash-from-two-arrays.l
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

3 lines
98 B
Text

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