From 966167902bd68ff233300e50ced87b20e2a7d10d Mon Sep 17 00:00:00 2001 From: dybvig Date: Wed, 1 Jun 2016 14:24:10 -0400 Subject: [PATCH] expanded on TSPL a bit original commit: 88187f729e439cbb19bbedd7006d91763ff8d22d --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69fafdc9c5..f5f40f3925 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ system, and programming environment. Although an interpreter is available, all code is compiled by default. Source code is compiled on-the-fly when loaded from a source file -or entered via the shell interface. +or entered via the shell. A source file can also be precompiled into a stored binary form and automatically recompiled when its dependencies change. Whether compiling on the fly or precompiling, the compiler produces @@ -45,7 +45,8 @@ expression editing. The R6RS core of the Chez Scheme language is described in [The Scheme Programming Language](http://www.scheme.com/tspl4/), -while Chez Scheme's additional language, run-time system, and +which also includes an introduction to Scheme and a set of example programs. +Chez Scheme's additional language, run-time system, and programming environment features are described in the [Chez Scheme User's Guide](http://cisco.github.io/ChezScheme/csug9.4/csug.html). The latter includes a shared index and a shared summary of forms,