As mentioned in another answer, these variables are documented in the ANSI Common Lisp standard.
In addition to the fact that the implementation of Common Lisp can have many other functions. A fully featured top level with a user interface is often called a Lisp listener.
The CLISP implementation provides additional commands in the debugger. See chapter 25 of your documentation.
LispWorks has some extensions in REPL and also provides a listener . Here are some examples:
Interaction number 2 in the CL-USER package:
CL-USER 2 > (* 3 4) 12
Same thing, but we can omit the outer parentheses:
CL-USER 3 > * 3 4 12
Let re-interaction 2:
CL-USER 4 > :redo 2 (* 3 4) 12
Let re-interaction 2, but with division instead of multiplication:
CL-USER 5 > :use / * 2 (/ 3 4) 3/4
Other implementations with extensions such as commands, output histories, or similar functions, such as Allegro CL and Clozure CL.
SLIME, which provides a common GNU Emacs-based Lisp development environment, also provides an advanced REPL .
source share