Skip to content

Instantly share code, notes, and snippets.

@masaedw
Created April 22, 2011 12:52
Show Gist options
  • Select an option

  • Save masaedw/936600 to your computer and use it in GitHub Desktop.

Select an option

Save masaedw/936600 to your computer and use it in GitHub Desktop.
;; 40
(fn interpose- [i l]
(let [[x & xs] l]
(if (nil? xs)
(list x)
(lazy-seq
(cons x
(cons i (interpose- i xs)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment