1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

added brief introduction about SLIB

This patch adds a short introduction to the SLIB section of the manual
with a link to the SLIB homepage.

--
Brian Gough

Network Theory Ltd,
Publishing Free Software Manuals --- http://www.network-theory.co.uk/

>From 60548b6e039bf57694b7841996cfda011cb8a4bf Mon Sep 17 00:00:00 2001
From: Brian Gough <bjg@gnu.org>
Date: Mon, 14 Dec 2009 20:49:27 +0000
Subject: [PATCH] added brief introduction about SLIB
This commit is contained in:
Brian Gough 2009-12-15 10:12:07 +00:00 committed by Neil Jerram
parent 8d7ee181be
commit 93b645239b

View file

@ -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,