SBCL

SBCL#

Installation#

SBCL(Steel Bank Common Lisp)をインストールする.

$ sudo apt-get install sbcl

Version#

$ sbcl --version
SBCL 2.1.11.debian

Example#

hello.lisp:

(format t "Hello, World!~%")

sbcl --script Ver.

$ sbcl --script hello.lisp
Hello, World!

REPL Ver.

$ sbcl
This is SBCL 2.1.11.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.
* (load "hello.lisp")         
Hello, World!
T
* (format t "Hello, World!~%")
Hello, World!
NIL