
vscm.init:
==========

vscm.init is the VSCM-specific initialization file for Aubrey Jaffer's
SLIB package.  It can be used in several ways:

a. Explicit load

    After running

	$ scheme

    you type

	(load "vscm.init")

b. As a command-line argument

    Run

	$ scheme vscm.init ...

    The disadvantage of this solution is that (program-arguments) will
    include the string "vscm.init" itself.

c. Install VSCM so that vscm.init becomes automatically available

    To install VSCM this way:

	1. Run scheme
	2. (load "vscm.init")
	3. (let ((args (dump "xxx")))
	     (if args
	       (begin
		 (display "[SLIB available]")
		 (newline)
		 (((mcm) 'toplevel) args))))
	4. (quit)

    In this procedure ``xxx'' stands for the file name of the default
    VSCM boot image (e.g. ``.scheme-boot'' or ``/usr/lib/vscm/scheme-boot'').

    Now you can just run

	$ scheme

    and slib (i.e. ``require'' and friends) are available.
