sbcl

Steel Bank Common Lisp compiler and runtime environment for Lisp development.

brewmacoslinux
Try with needOr install directly
Source

About

Steel Bank Common Lisp system

Commands

sbcl

Examples

start an interactive Lisp REPL to write and test code$ sbcl
run a Lisp script file from the command line$ sbcl --script my-script.lisp
compile a Lisp source file into an executable program$ sbcl --load my-program.lisp --eval '(save-lisp-and-die "my-program" :executable t)'
evaluate a single Lisp expression and print the result$ sbcl --eval '(+ 2 3)' --quit
load and execute Lisp code with custom arguments passed to the program$ sbcl --script my-app.lisp arg1 arg2 arg3