Go to the first, previous, next, last section, table of contents.


SLIB

Before the the SLIB facilities can be used, the following Scheme expression must be executed:

(use-modules (ice-9 slib))

require can then be used as described in section `SLIB' in The SLIB Manual. For example:

(require 'format)
(format "~8,48D" 10)


Go to the first, previous, next, last section, table of contents.