Skip to content

Instantly share code, notes, and snippets.

@kitofr
Created July 15, 2011 14:40
Show Gist options
  • Save kitofr/1084811 to your computer and use it in GitHub Desktop.
Save kitofr/1084811 to your computer and use it in GitHub Desktop.
#(loop [f %1 s %2 c ()]
(if (or
(empty? f)
(empty? s))
(reverse c)
(recur (rest f) (rest s) (conj c (first f) (first s)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment