babashka

https://github.com/babashka/babashka. Also see #sci, #nbb and #babashka-circleci-builds .
Helins 2021-06-05T10:46:12.408100Z

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

borkdude 2021-06-05T10:53:23.408600Z

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

borkdude 2021-06-05T10:53:42.408900Z

a process is only created when you actually launch a JVM

Helins 2021-06-05T11:19:04.409100Z

Of course, thanks!