How do you deploy your #lisp apps. Somehow i like the idea of just loading my system in sbcl and let it run with the repl open.
@m3tti In SBCL, that's what I've done, with a shell script to start it or you can just call it from REPL. I have Ideas for using ECL.
In Chez Scheme supposedly I can make a universal binary and then just include the runtime blob, but in practice it's fiddly work on each platform, so right now Mac works great, others are tough.
Kawa Scheme was a little setup work and then I can just make a jar that works everywhere, I bet ABCL is similar.
#lisp #scheme #ecl