Skip to content

Instantly share code, notes, and snippets.

@kiras
Created June 19, 2011 02:15
Show Gist options
  • Save kiras/1033674 to your computer and use it in GitHub Desktop.
Save kiras/1033674 to your computer and use it in GitHub Desktop.
lz-rec-step
(defn lz-rec-step [s]
(lazy-seq
(if (seq s)
[(first s) (lz-rec-step (rest s))]
[])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment