We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This function flattens lists of lists.
(def xs '(1 2 3)) (def ys '(4 5)) (def zs (list xs (list (list ys)))) ; ((1 2 3) (((45)))) (flatten zs) ; (1 2 3 4 5)