Hi, Panicz Maciej Godek <[email protected]> skribis:
> for now, the problem is that I want to bind the variables that are
> contained within a list, and that I don't know what's in that list.
I would recommend using (ice-9 match):
(match '(1 2 3)
((a b c) `((a . ,a) (b . ,b) (c . ,c))))
=> ((a . 1) (b . 2) (c . 3))
HTH,
Ludo’.
