Skip to content

Instantly share code, notes, and snippets.

@cmiles74
Created August 21, 2009 20:31
Show Gist options
  • Save cmiles74/172411 to your computer and use it in GitHub Desktop.
Save cmiles74/172411 to your computer and use it in GitHub Desktop.
(defn testing [reader-in]
(lazy-seq
(let [text []]
(let [int-in (next-character r)]
(if (not= int-in -1)
(conj text (char int-in))
text)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment