Re: [racket-users] R7RS (small) in Racket

2015-10-26 Thread Matthew Flatt
I think a per-version switch would be reasonable. Another approach is to register a different checksum of the package for v6.2.1 and earlier releases, or create a shim for `make-syntax-introducer` that resides in its own package that has different implementations for different releases. To me, tha

Re: [racket-users] R7RS (small) in Racket

2015-10-25 Thread Philip Blair
Hello all, I was hoping to get some mailing list assistance with this issue involving adding R7RS's `#u8(...)' bytevector syntax to the readtable: The readtable extension culminates with the following: (with-syntax ([(vals ...) (read-syntax src in)]) (syntax (bytevector vals ...)) (Where `b

Re: [racket-users] R7RS (small) in Racket

2015-10-25 Thread Stephen Chang
This paper is not about Racket but reports on an r7rs implementation experience and so may have some helpful hints: http://www.schemeworkshop.org/2014/papers/Kato2014.pdf On Oct 25, 2015 5:18 PM, "Alexis King" wrote: > I have built a very small, very incomplete implementation of R7RS in > Racket

[racket-users] R7RS (small) in Racket

2015-10-25 Thread Alexis King
I have built a very small, very incomplete implementation of R7RS in Racket. You can install the “r7rs” package, or you can find it on GitHub here: https://github.com/lexi-lambda/racket-r7rs Most of the standard seems fairly straightforward, but there are two questions I have. First of all, do t