(defn start-thread "Starts a thread that run the given function f" ([#^Runnable f] (doto (Thread. f) (.start))))
Comments top
No comments for start-thread. Log in to add a comment.