Welcome! Please see the About page for a little more info on how this works.

0 votes
in Clojure by

My understanding is that babashka is meant to be a fast startup clojure runtime, so they seem to work well together (borkdude already started porting tools.build to bb), but as I'm still a beginner, I wanted to understand how you folks think of those tools.

When should I consider one over the other, aside from what babashka already states in its repo (prefer jvm clojure for long running scripts)?

Thanks!

1 Answer

+2 votes
by
selected by
 
Best answer

My recommendation for beginners is to stick to the official tooling for learning, and then adopt additional tooling as you feel you need it, once you have a good handle on how the basics work. That reduces the variables in your environment and make it easier for you to follow tutorials and get help when things go wrong.

Babashka is a great tool and if you're set on writing shell scripts in (a subset of JVM-based) Clojure, then it is a great way to approach that particular problem.

by
Cool, thanks!
...