trying to use io-prepl in babashka. I see the implementation in babashka.impl.clojure.core.server , but it's not in the release binary. What's the intended way to access this code? Should I compile my own binaries?
You should use it like you would use it in clojure. The implementation as you see it on github is an implementation detail
$ rlwrap bb -e '(clojure.core.server/io-prepl)'
1
{:tag :ret, :val "1", :ns "user", :ms 0, :form "1"}💡 thanks!