Mirror of ChezScheme with OpenBSD boot files.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 
Tom MTT. 57d9b129d8 Revert "fix: README -> README.md"
This reverts commit 99b0a6292c.
2 years ago
.github/workflows feat: 9.5.9 2 years ago
bintar feat: 9.5.9 2 years ago
boot feat: 9.5.9 2 years ago
c feat: 9.5.9 2 years ago
csug Revert "fix: README -> README.md" 2 years ago
examples feat: 9.5.9 2 years ago
lz4 feat: 9.5.9 2 years ago
makefiles feat: 9.5.9 2 years ago
mats feat: 9.5.9 2 years ago
nanopass feat: 9.5.9 2 years ago
pkg feat: 9.5.9 2 years ago
release_notes feat: 9.5.9 2 years ago
rpm feat: 9.5.9 2 years ago
s feat: 9.5.9 2 years ago
stex feat: 9.5.9 2 years ago
unicode feat: 9.5.9 2 years ago
wininstall feat: 9.5.9 2 years ago
zlib feat: 9.5.9 2 years ago
.gitattributes feat: 9.5.9 2 years ago
.gitignore feat: 9.5.9 2 years ago
.gitmodules feat: 9.5.9 2 years ago
BUILDING feat: 9.5.9 2 years ago
CHARTER.md feat: 9.5.9 2 years ago
CONTRIBUTING.md feat: 9.5.9 2 years ago
LICENSE feat: init 2 years ago
LOG feat: 9.5.9 2 years ago
NOTICE feat: 9.5.9 2 years ago
README Revert "fix: README -> README.md" 2 years ago
README.md Revert "fix: README -> README.md" 2 years ago
checkin feat: 9.5.9 2 years ago
configure feat: 9.5.9 2 years ago
newrelease feat: 9.5.9 2 years ago
scheme.1.in feat: 9.5.9 2 years ago
workarea feat: 9.5.9 2 years ago

README.md

test

Chez Scheme is both a programming language and an implementation of that language, with supporting tools and documentation.

As a superset of the language described in the Revised6 Report on the Algorithmic Language Scheme (R6RS), Chez Scheme supports all standard features of Scheme, including first-class procedures, proper treatment of tail calls, continuations, user-defined records, libraries, exceptions, and hygienic macro expansion.

Chez Scheme also includes extensive support for interfacing with C and other languages, support for multiple threads possibly running on multiple cores, non-blocking I/O, and many other features.

The Chez Scheme implementation consists of a compiler, run-time 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. 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 optimized machine code, with some optimization across separately compiled library boundaries. The compiler can also be directed to perform whole-program compilation, which does full cross-library optimization and also reduces a program and the libraries upon which it depends to a single binary.

The run-time system interfaces with the operating system and supports, among other things, binary and textual (Unicode) I/O, automatic storage management (dynamic memory allocation and generational garbage collection), library management, and exception handling. By default, the compiler is included in the run-time system, allowing programs to be generated and compiled at run time, and storage for dynamically compiled code, just like any other dynamically allocated storage, is automatically reclaimed by the garbage collector.

The programming environment includes a source-level debugger, a mechanism for producing HTML displays of profile counts and program "hot spots" when profiling is enabled during compilation, tools for inspecting memory usage, and an interactive shell interface (the expression editor, or "expeditor" for short) that supports multi-line expression editing.

The R6RS core of the Chez Scheme language is described in The Scheme Programming Language, 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. The latter includes a shared index and a shared summary of forms, with links where appropriate to the former, so it is often the best starting point.

Get started with Chez Scheme by Building Chez Scheme.

For more information see the Chez Scheme Project Page.