SBCL 1.0.1

Version of implementation Steel Bank Common Lisp of programming language Lisp

A version of SBCL compiler.

Examples:

CamelCase - Lisp (277):

(defun camel-case (s)
  (remove #\Space 
          (string-capitalize
           (substitute #\Space nil s :key #'alpha-char-p))))

(princ (camel-case (read-line)))