12. Using the SLIB package
SLIB is a library for the programming language Scheme, written by Aubrey Jaffer [SLIB]. It provides a platform independent framework for using packages of Scheme procedures and syntax. It uses only standard Scheme syntax and thus works on many different Scheme implementations.
To use this package, you have just to type
(require "slib")
or use the SRFI-96 (SLIB Prerequisites) with
(import (srfi 96))
and follow the instructions given in the SLIB library manual to use a particular package.
SLIB uses also the require and provide mechanism to load
components of the library. Once SLIB has been loaded, the standard
STklos SLIB needs to create a catalog of the file that must be loaded to
implement a given feature. This catalog is stored in a file named
STklos searches the SLIB implementation directory in some standard
places. If not found, you can fix it with the |