babashka

hanDerPeder 2025-12-27T20:16:01.719569Z

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?

borkdude 2025-12-27T20:16:53.833829Z

You should use it like you would use it in clojure. The implementation as you see it on github is an implementation detail

borkdude 2025-12-27T20:17:39.941299Z

$ rlwrap bb -e '(clojure.core.server/io-prepl)'
1
{:tag :ret, :val "1", :ns "user", :ms 0, :form "1"}

hanDerPeder 2025-12-27T20:18:39.490669Z

💡 thanks!