(defn announce-port-to-file "Writes the given port number into a file." ([#^String file port] (with-open [out (new java.io.FileWriter file)] (doto out (.write (str port "\n")) (.flush)))))
Comments top
No comments for announce-port-to-file. Log in to add a comment.