-
I think I found an error in https://github.com/johnwcowan/r7rs-spec/blob/errata/spec/r7rs.pdf . On page 55 I see this:
> `(scheme-report-environment version)`
> ...
> The effect of defining or as…
-
[Bottom Scheme](https://github.com/johnwcowan/r7rs-work/blob/master/BottomScheme.md) is another subset of R7RS-small that you may want to compare with this spec.
-
Here's the current set of libraries planned for R7RS-large (in addition to the R7RS-small ones):
* `(scheme bitwise)`
* `(scheme box)`
* `(scheme bytevector)`
* `(scheme charset)`
* `(scheme co…
-
I wanted to see if it might be possible to add Gerbil Scheme to the platform. Although it ranks second overall amongst all Schemes in speed, by a small margin, Gerbil shines with its robust built-in s…
-
This comes from ["R7RS Considered Unifier of Previous Standards"](http://andykeep.com/SchemeWorkshop2015/papers/sfpw1-2015-clinger.pdf) by Will Clinger, which describes Larceny's R6/R7 integration. H…
-
Using a library granularity for the time being, there should probably be three top-level forms:
* `(define-library ...)` -- dynamic Scheme library as in R7RS; the equivalent is `(library ...)` in R…
-
R7RS-small is part of Gambit repository in [`lib/scheme`](https://github.com/gambit/gambit/tree/master/lib/scheme) directory.
Here is the R7RS-large libraries:
R7RS | SRFI | Code | Tests | Doc |…
-
There are only a few hints on what Rapid Scheme requires for its output code to run: all macros and modules are expanded, so they aren't necessary except for primitive syntax, but what is the primiti…
-
with inclusion of "cond-expand" in Chez, will reduce the effort of porting 3rd party libraries to Chez.
and seems it is standardized in r7rs
-
In SFRI-46:
(define-syntax fake-begin
(syntax-rules ()
((fake-begin ?body ... ?tail)
(let* ((ignored ?body) ...) ?tail))))
(fake-begin
(DISPLAY "Hello"))
fake-begin should wor…
trb-a updated
3 years ago