When comparing MIT/GNU vs Common Lisp, the Slant community recommends Common Lisp for most people. In the question“What are the best Lisp dialects?” Common Lisp is ranked 3rd while MIT/GNU is ranked 7th. The most important reason people chose Common Lisp is:
Almost all aspects of the language are designed with interactive/repl use in mind.
Ranked in these QuestionsQuestion Ranking
Pros
Pro Carefully designed for interactive use
Almost all aspects of the language are designed with interactive/repl use in mind.
Pro Very Powerful REPL with SLIME
SLIME (Superior Lisp Interaction Mode for Emacs).
Pro Condition/restart system
It is easy to recover from errors. Error resolution can be determined by the user at the REPL.
Pro Image based runtime
The state of the program may be saved and reloaded as an image, supporting safer modification of the running program. New code may be compiled into the image as the program runs, while late binding ensures that symbol redefinitions take effect throughout the program.
Pro Almost as fast as, or faster than, C
Some compilers such as SBCL can be faster than C or other low-level languages, and most compilers can generate fast native code.
Cons
Con Not made to run as standalone
Cannot be compiled to a standalone executable, only to byte code that can be run from the interpreter; and cannot be conveniently interpreted by the interpreter from the command line.
Con Not very well-documented
The documentation is very sparse.
Con Poor Windows support
Con Ill-designed interpreter's interface
The interpreter does not support the use of the left and right arrows to move the cursor in the code and the use of the up and down arrows to navigate through the history.