clojure
does not support {:out :string}
, does it? (trying to compute and get the current classpath)
@adam678 The difference there is that outputting the classpath doesn't create a process, so for this you can just use with-out-str
a process is only created when you actually launch a JVM
Of course, thanks!