Skip to content

Instantly share code, notes, and snippets.

@jneen
Created July 27, 2015 17:09
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 jneen/2f62ead49570c0629bca to your computer and use it in GitHub Desktop.
Save jneen/2f62ead49570c0629bca to your computer and use it in GitHub Desktop.
(defn frybo [fname]
(def raf (java.io.RandomAccessFile. fname "r"))
(def out-chan (chan 10))
(go-loop [] (>!! out-chan (.readByte raf)))
out-chan)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment