Skip to content

Instantly share code, notes, and snippets.

@jeroenvandijk
Forked from apeckham/.clj
Last active February 19, 2025 08:19
Show Gist options
  • Save jeroenvandijk/6a4bd7db923e4e959d87cf7d8829b2d6 to your computer and use it in GitHub Desktop.
Save jeroenvandijk/6a4bd7db923e4e959d87cf7d8829b2d6 to your computer and use it in GitHub Desktop.
find free port in clojure
(defn get-free-port []
(with-open [socket (java.net.ServerSocket. 0)]
(.getLocalPort socket)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment