About ----- This is Gales Scheme: a Scheme interpreter for Unix striving for simplicity, soundness, minimal artificial restrictions, and R5RS compliance with strict error checking. Written by Jacob Welsh for JWRD Computing. Prerequisites ------------- gcc, targetting an x86_64 POSIX environment. Linux and OpenBSD are known to work. Other ISAs are supportable in principle but there's presently some assembly math code lacking portable equivalent. Installation ------------ This software sheds some historical Unix conventions in favor of Bernstein's /package scheme ( http://cr.yp.to/slashpackage.html ), which I find meshes fairly well with the ideas of V. If this is your first time using it, you may need to create the /package directory and add /command to your shell's PATH variable. 1. Press or otherwise install the tree at the path: /package/gscm-0.40.3 The installation path is not configurable. This amounts to a claim on the global namespace, as command names always do. People and programs can count on finding components at known paths if they are to be found at all, as surely as with /bin/sh. This doesn't mean the files must physically exist under /package; for example, a symlink from there could ease working on the code as a non-root user. 2. From the above directory, run (as root): sh package/install 3. Run the test suite if you like: sh package/check Known failures at present include, from tests/numbers.scm: (fail inexact-read-precision) : float formatting and parsing algorithms are imprecise. (fail 1 1 expt13) : (expt 1 -1) returns an inexact (float) result when it could be exact. From tests/semantic-bad.scm: (fail unary-add-type bad-type) (fail unary-mul-type bad-type) : the single-argument passthrough base case for + and * doesn't bother checking for numbers. Usage notes ----------- See "gscm -h" for CLI options. The main shortfalls with respect to R5RS are the macro language and advanced numeric types (rational and complex). Arbitrary precision (bignum) integer arithmetic is supported. A number of extensions are provided including system interface, sockets, and fixnum arithmetic; see doc/extensions.txt for (incomplete) details. Error recovery, debugging, and concurrency support are known weaknesses (no help from the standard here).