Version: 5.0

R6RS: Scheme

The The Revised6 Report on the Algorithmic Language Scheme defines a dialect of Scheme. We use R6RS to refer to both the standard and the language defined by the standard.

See Dialects of Racket and Scheme for general information about different dialects of Scheme within Racket.

R6RS defines both libraries and top-level programs. Both correspond to Racket modules (see Modules). That is, although R6RS defines top-level programs as entry points, you can just as easily treat a library as an entry point when using Racket. The only difference is that an R6RS top-level program cannot export any bindings to other modules.

    1 Running Top-Level Programs

    2 Installing Libraries

    3 R6RS Module Language

    4 Libraries and Collections

    5 Language Interoperability

    6 R6RS Conformance

    7 R6RS Libraries

      7.1 (rnrs base (6)): Base

      7.2 (rnrs unicode (6)): Unicode

      7.3 (rnrs bytevectors (6)): Bytevectors

      7.4 (rnrs lists (6)): List utilities

      7.5 (rnrs sorting (6)): Sorting

      7.6 (rnrs control (6)): Control Structures

      7.7 (rnrs records syntactic (6)): Records: Syntactic

      7.8 (rnrs records procedural (6)): Records: Procedural

      7.9 (rnrs records inspection (6)): Records: Inspection

      7.10 (rnrs exceptions (6)): Exceptions

      7.11 (rnrs conditions (6)): Conditions

      7.12 (rnrs io ports (6)): I/O: Ports

      7.13 (rnrs io simple (6)): I/O: Simple

      7.14 (rnrs files (6)): File System

      7.15 (rnrs programs (6)): Command-line Access and Exit Values

      7.16 (rnrs arithmetic fixnums (6)): Arithmetic: Fixnums

      7.17 (rnrs arithmetic flonums (6)): Arithmetic: Flonums

      7.18 (rnrs arithmetic bitwise (6)): Arithmetic: Bitwise

      7.19 (rnrs syntax-case (6)): Syntax-Case

      7.20 (rnrs hashtables (6)): Hashtables

      7.21 (rnrs enums (6)): Enumerations

      7.22 (rnrs eval (6)): Eval

      7.23 (rnrs mutable-pairs (6)): Mutable Pairs

      7.24 (rnrs mutable-strings (6)): Mutable Strings

      7.25 (rnrs r5rs (6)): R5RS Compatibility

    Index