Skip to content

Instantly share code, notes, and snippets.

@schmee
Created July 24, 2014 19:34
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 schmee/522e29e355428a627fe2 to your computer and use it in GitHub Desktop.
Save schmee/522e29e355428a627fe2 to your computer and use it in GitHub Desktop.
(defn listen [sock]
(let [running (atom true)]
(let [reader (io/reader sock)]
(while @running
(let [msg-in (read reader)]
(println msg-in))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment