Skip to content

Instantly share code, notes, and snippets.

@4mitch
Forked from ekoontz/gist:1502838
Created September 23, 2018 22:48
Show Gist options
  • Save 4mitch/0219bad39682fba214a54751477a545e to your computer and use it in GitHub Desktop.
Save 4mitch/0219bad39682fba214a54751477a545e to your computer and use it in GitHub Desktop.
Show your classpath within Clojure REPL.
(use 'clojure.pprint)
(import 'java.lang.Thread)
(-> (Thread/currentThread) (.getContextClassLoader) (.getURLs) (seq) (pprint))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment