clojure icon indicating copy to clipboard operation
clojure copied to clipboard

debug: Examine the classpath in the REPL

Open practicalli-johnny opened this issue 3 years ago • 0 comments

A very simplistic way of looking at the class path from the REPL, useful for debugging class path issues.

(some #{"src" "resources"}
  (clojure.string/split  
  (System/getProperty "java.class.path") 
  (re-pattern (System/getProperty "path.separator"))))

This should not be fully relied upon, only used as a quick look at what is probably the class path being used

practicalli-johnny avatar Feb 22 '23 03:02 practicalli-johnny