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

..06-Nov-2021-

compiled/H03-May-2022-105

READMEH A D08-Oct-2021798 2617

r6rs-tests.rktH A D08-Oct-202180.5 KiB2,1241,876

r6rs.rktH A D08-Oct-202137.6 KiB954830

racket-vs-redex.rktH A D08-Oct-2021344 159

show-examples.rktH A D08-Oct-20211.6 KiB6146

test.rktH A D08-Oct-20217.7 KiB220194

README

1This directory a the PLT Redex implementation of the
2R6RS operational semantics and a test suite for the
3semantics.
4
5== r6rs.rkt: the semantics itself.
6
7== r6rs-tests.rkt: the test suite for the semantics. Use:
8
9   racket -t r6rs-tests.rkt -m
10
11   to run the tests and see a single period shown per test
12   run (each test that explores more than 100 states shows a
13   colon for each 100 states it explores). To see a more
14   verbose output (that shows each test), use:
15
16   racket -t r6rs-tests.rkt -m #t
17
18== show-examples.rkt: use this file to explore particular
19   examples in a GUI. Its content shows how to use it and
20   gives a few examples. Either run it in DrRacket's module
21   language, or like this from the commandline:
22
23   gracket show-examples.rkt
24
25== test.rkt: test suite infrastructure
26