diff options
-rw-r--r-- | doc/ref/slib.texi | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/ref/slib.texi b/doc/ref/slib.texi index d3357c97f..5fe382dc0 100644 --- a/doc/ref/slib.texi +++ b/doc/ref/slib.texi @@ -8,14 +8,21 @@ @section SLIB @cindex SLIB -Before the SLIB facilities can be used, the following Scheme expression -must be executed: +SLIB is a portable library of Scheme packages which can be used with +Guile and other Scheme implementations. SLIB is not included in the +Guile distribution, but can be installed separately (@pxref{SLIB +installation}). It is available from +@url{http://people.csail.mit.edu/jaffer/SLIB.html}. + +After SLIB is installed, the following Scheme expression must be +executed before the SLIB facilities can be used: @lisp (use-modules (ice-9 slib)) @end lisp @findex require +@noindent @code{require} can then be used in the usual way (@pxref{Require,,, slib, The SLIB Manual}). For example, |