1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><title>Where To Go For More Information About SBCL</title><meta name="generator" content="DocBook XSL Stylesheets V1.62.4" /><link rel="home" href="index.html" title="SBCL User Manual" /><link rel="up" href="intro.html" title="Chapter1.Introduction" /><link rel="previous" href="intro.html" title="Chapter1.Introduction" /><link rel="next" href="implementation.html" title="Overview Of SBCL, How It Works And Where It Came From" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Where To Go For More Information About SBCL</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="intro.html">Prev</a></td><th width="60%" align="center">Chapter1.Introduction</th><td width="20%" align="right"><a accesskey="n" href="implementation.html">Next</a></td></tr></table><hr /></div><div class="sect1" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="where-more"></a>Where To Go For More Information About <span class="application">SBCL</span></h2></div></div><div></div></div><p>Before you read this user manual, you should probably read
two other things.
</p><div class="itemizedlist"><ul type="disc"><li><p>You should know how to program in Common Lisp.
If you don't already know how, you should probably read a
<a href="intro.html#more-cl-info" title="Where To Go For More Information about Common Lisp in General">book on it</a>.</p></li><li><p>The Unix “<span class="quote">man page</span>” for <span class="application">SBCL</span> will tell you
how to start the <span class="application">SBCL</span> environment, so you can get to the
classic “<span class="quote">hello, world</span>” level of knowledge. It's the file
called <tt class="filename">sbcl.1</tt> in the <span class="application">SBCL</span> distribution. If <span class="application">SBCL</span> is
installed on your system, you can read a formatted copy by
executing the command <span><b class="command">man sbcl</b></span>.</p></li></ul></div><p>
</p><p>Besides this user manual and the Unix man page, some
other <span class="application">SBCL</span>-specific information is available:
</p><div class="itemizedlist"><ul type="disc"><li><p>The <a href="http://sbcl.sourceforge.net/" target="_top">
<span class="application">SBCL</span> home page</a> has some general
information, plus links to mailing lists devoted to <span class="application">SBCL</span>,
and to archives of these mailing lists.</p></li><li><p>Documentation for non-<span class="acronym">ANSI</span> extensions for
various commands is available online from the <span class="application">SBCL</span> executable
itself. The extensions for functions which have their own
command prompts (e.g. the debugger, and <tt class="function">inspect</tt>)
are documented in text available by typing <b class="userinput"><tt>help</tt></b>
at their command prompts. The extensions for functions which
don't have their own command prompt (like <tt class="function">trace</tt>
does) are described in their documentation strings,
unless your <span class="application">SBCL</span> was compiled with an option not
to include documentation strings, in which case the doc strings
are only readable in the source code.</p></li><li><p>Some low-level information describing the
programming details of the conversion from <span class="application">CMU CL</span> to <span class="application">SBCL</span>
is available in the <tt class="filename">doc/FOR-CMUCL-DEVELOPERS</tt>
file in the <span class="application">SBCL</span> distribution.</p></li></ul></div><p>
</p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="intro.html">Prev</a></td><td width="20%" align="center"><a accesskey="u" href="intro.html">Up</a></td><td width="40%" align="right"><a accesskey="n" href="implementation.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter1.Introduction</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">Overview Of SBCL, How It Works And Where It Came From</td></tr></table></div></body></html>
|