How can I simply “run” lisp files
Executables SBCL can save executable images, as Greg Harman mentions (see the :EXECUTABLE keyword): http://www.sbcl.org/manual/index.html#Saving-a-Core-Image Scripts Lisp files can be executed as scripts, see: http://www.sbcl.org/manual/#Shebang-Scripts Command Line Options SBCL has command line options to evaluate/load lisp code on start: http://www.sbcl.org/manual/#Command-Line-Options SLIME SLIME is an Emacs interface for Common Lisp. One can use SBCL via SLIME … Read more