We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This function zips lists together.
(def xs '(a b c)) (def ys '(1 2 3)) (def zs '(x y z)) (zip xs ys zs) ; ((a 1 x) (b 2 y) (c 3 z))