• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bintar/H06-Nov-2021-8758

boot/pb/H06-Nov-2021-15,31215,165

c/H03-May-2022-27,89821,450

csug/H06-Nov-2021-12,92912,554

examples/H06-Nov-2021-5,6365,073

lz4/lib/H06-Nov-2021-9,1515,789

makefiles/H06-Nov-2021-717555

mats/H07-May-2022-151,512146,423

nanopass/H06-Nov-2021-13,22512,315

pkg/H06-Nov-2021-14795

release_notes/H06-Nov-2021-476378

rktboot/H03-May-2022-4,3143,834

rpm/H06-Nov-2021-8562

s/H06-Nov-2021-123,713116,085

stex/H06-Nov-2021-7,9447,074

unicode/H06-Nov-2021-6,5366,468

wininstall/H03-May-2022-788731

zlib/H03-May-2022-71,84353,807

BUILDINGH A D24-Oct-202113.3 KiB377265

CHARTER.mdH A D24-Oct-20212.9 KiB5651

CONTRIBUTING.mdH A D24-Oct-20214.3 KiB9576

IMPLEMENTATION.mdH A D24-Oct-202156 KiB1,2821,030

LICENSEH A D24-Oct-202111.1 KiB203169

LOGH A D24-Oct-2021106.9 KiB2,2132,205

NOTICEH A D24-Oct-20211,012 3421

README.mdH A D24-Oct-20214.1 KiB9676

checkinH A D24-Oct-20218 KiB345289

configureH A D03-May-202222.7 KiB901817

newreleaseH A D24-Oct-20216.1 KiB185121

scheme.1.inH A D24-Oct-202128.7 KiB800799

workareaH A D24-Oct-202111.1 KiB458379

README.md

1Chez Scheme is both a programming language and an implementation of
2that language, with supporting tools and documentation.
3This variant of Chez Scheme is extended to support the implementation
4of [Racket](https://racket-lang.org/).
5
6Supported platforms:
7
8 * Windows: x86, x86_64
9 * Mac OS: x86, x86_64, AArch64, PowerPC32
10 * Linux: x86, x86_64, ARMv6, AArch64, PowerPC32
11 * FreeBSD: x86, x86_64, ARMv6, AArch64, PowerPC32
12 * OpenBSD: x86, x86_64, ARMv6, AArch64, PowerPC32
13 * NetBSD: x86, x86_64, ARMv6, AArch64, PowerPC32
14 * Solaris: x86, x86_64
15 * Android: ARMv7, AArch64
16 * iOS: AArch64
17
18As a superset of the language described in the
19[Revised<sup>6</sup> Report on the Algorithmic Language Scheme](http://www.r6rs.org)
20(R6RS), Chez Scheme supports all standard features of Scheme,
21including first-class procedures, proper treatment of tail calls,
22continuations, user-defined records, libraries, exceptions, and
23hygienic macro expansion.
24
25Chez Scheme also includes extensive support for interfacing with C
26and other languages, support for multiple threads possibly running
27on multiple cores, non-blocking I/O, and many other features.
28
29The Chez Scheme implementation consists of a compiler, run-time
30system, and programming environment.
31Although an interpreter is available, all code is compiled by
32default.
33Source code is compiled on-the-fly when loaded from a source file
34or entered via the shell.
35A source file can also be precompiled into a stored binary form and
36automatically recompiled when its dependencies change.
37Whether compiling on the fly or precompiling, the compiler produces
38optimized machine code, with some optimization across separately
39compiled library boundaries.
40The compiler can also be directed to perform whole-program compilation,
41which does full cross-library optimization and also reduces a
42program and the libraries upon which it depends to a single binary.
43
44The run-time system interfaces with the operating system and supports,
45among other things, binary and textual (Unicode) I/O, automatic
46storage management (dynamic memory allocation and generational
47garbage collection), library management, and exception handling.
48By default, the compiler is included in the run-time system, allowing
49programs to be generated and compiled at run time, and storage for
50dynamically compiled code, just like any other dynamically allocated
51storage, is automatically reclaimed by the garbage collector.
52
53The programming environment includes a source-level debugger, a
54mechanism for producing HTML displays of profile counts and program
55"hot spots" when profiling is enabled during compilation, tools for
56inspecting memory usage, and an interactive shell interface (the
57expression editor, or "expeditor" for short) that supports multi-line
58expression editing.
59
60The R6RS core of the Chez Scheme language is described in
61[The Scheme Programming Language](http://www.scheme.com/tspl4/),
62which also includes an introduction to Scheme and a set of example programs.
63Chez Scheme's additional language, run-time system, and
64programming environment features are described in the
65[Chez Scheme User's Guide](http://cisco.github.io/ChezScheme/csug9.5/csug.html).
66The latter includes a shared index and a shared summary of forms,
67with links where appropriate to the former, so it is often the best
68starting point.
69
70Get started with Chez Scheme by [Building Chez Scheme](BUILDING).
71
72For more information about the implementation and a guide to modifying
73Chez Scheme, see [implementation notes](IMPLEMENTATION.md).
74
75For more information on Chez Scheme, see the [Chez Scheme Project Page](https://cisco.github.io/ChezScheme/).
76
77Major additions to Chez Scheme in the Racket variant:
78
79 * AArch64 support
80
81 * pb (Portable bytecode) support, which is mainly useful for
82   bootstrapping a build on any supported platform
83
84 * Unboxed floating-point arithmetic and flvectors
85
86 * Type reconstruction during optimization (especially for safe code)
87
88 * Continuation attachments
89
90 * Parallel garbage collection, in-place garbage collection for
91   old-generation objects (instead of always copying), and
92   reachability-based memory accounting
93
94 * Ordered finalization, immobile (but collectable) objects, and
95   weak/ephemeron generic hash tables
96