4 ms·
Could you share some of what is great about the cl/sbcl tooling?
by sushidev 2y ago
Could you share some of what is great about the cl/sbcl tooling?
- atgreen 2y agoIf you are writing services for a platform like kubernetes, the inner-loop development cycle is unmatched. You just connect your editor to the lisp image running in k8s, and with a couple of keystrokes, your code changes are shipped to the target container, replacing what's running live -- as native machine code. You can debug in a repl, handle conditions (exceptions) interactively with restarts, etc etc.
- sushidev 2y agoYep makes sense. I worked with clojure for many years so it’s familiar to me. Iterating via the repl is a great way to develop software. I was wondering if sbcl has good tooling for code navigation, completion, debugging.