Skip to content

Instantly share code, notes, and snippets.

@timsgardner
Created July 25, 2016 23:55
Show Gist options
  • Save timsgardner/abbdb7a6fb956abe5951cfad54c48b2b to your computer and use it in GitHub Desktop.
Save timsgardner/abbdb7a6fb956abe5951cfad54c48b2b to your computer and use it in GitHub Desktop.
println doesn't work from other threads
;; seems to me this should work from the repl; it doesn't.
(let [out *out*]
(Thread.
(gen-delegate ThreadStart []
(binding [*out* out]
(println "hi")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment