#lisp #commonlisp #repl #implementation #version
And easy way to get the Common Lisp version and implementation you're using, from the REPL is:
CL-USER> (concatenate 'string (lisp-implementation-type) "-" (lisp-implementation-version) )
"SBCL-2.2.11"
Happy hacking!
By Erick ikki López