Skip to content

Instantly share code, notes, and snippets.

@mefesto
Created May 26, 2010 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mefesto/6d7c8a2c9bcd748b22fb to your computer and use it in GitHub Desktop.
Save mefesto/6d7c8a2c9bcd748b22fb to your computer and use it in GitHub Desktop.
(defn char-seq [rdr]
(lazy-seq
(let [ch (.read rdr)]
(when (> ch -1)
(cons (char ch) (char-seq rdr))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment