Skip to content
TurtleKitty edited this page May 17, 2019 · 2 revisions

zip

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))
Clone this wiki locally