chez-srfi
chez-srfi copied to clipboard
SRFIs for Chez Scheme
Hi. I am mostly using your project on linux machines but I need to use it also on windows machine. Unfortunately there is problem with the naming files and folders....
These are just some thoughts on improving the [install](../tree/master/install.chezscheme.sps) script. It's been useful for some, but has proven to be a bit brittle. Its current behaviour is to assume only...
It explicitly imports `(chezscheme)` . Here is a simple portable implementation: https://github.com/IronScheme/chez-srfi/blob/master/%253a111/boxes.sls
AFAICT Chez Scheme's `fluid-let` is compatible with [SRFI 15](https://srfi.schemers.org/srfi-15/srfi-15.html). In that case, this would be a compliant implementation of the latter: ```Scheme (library (srfi :15) (export fluid-let) (import (only (chezscheme)...
Chez Scheme's parameters are not quite compatible with SRFI-39, as explained by @akeep here: https://github.com/cisco/ChezScheme/issues/409#issuecomment-474819269 However, chez-srfi uses them directly: ```scheme (library (srfi :39 parameters) (export make-parameter parameterize) (import (only...
adapted the reference implementation of SRFI 197 from here: https://github.com/scheme-requests-for-implementation/srfi-197/ originally developed here: https://github.com/ar-nelson/srfi-197 This code is thus licensed under MIT license and copyright (c) Adam Nelson with minor edits...