3 lines
98 B
Text
3 lines
98 B
Text
(let (Keys '(one two three) Values (1 2 3))
|
|
(mapc println
|
|
(mapcar cons Keys Values) ) )
|