Fork me on GitHub
#babashka
<
2021-06-05
>
Adam Helins10:06:12

clojure does not support {:out :string} , does it? (trying to compute and get the current classpath)

borkdude10:06:23

@adam678 The difference there is that outputting the classpath doesn't create a process, so for this you can just use with-out-str

borkdude10:06:42

a process is only created when you actually launch a JVM

Adam Helins11:06:04

Of course, thanks!