https://github.com/ktakashi/gauche-srfis
Collection of missing SRFIson Gauche
https://github.com/ktakashi/gauche-srfis
Last synced: about 1 month ago
JSON representation
Collection of missing SRFIson Gauche
- Host: GitHub
- URL: https://github.com/ktakashi/gauche-srfis
- Owner: ktakashi
- Created: 2015-01-15T20:19:03.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-15T21:06:39.000Z (over 10 years ago)
- Last Synced: 2024-10-06T01:21:49.352Z (7 months ago)
- Language: Scheme
- Size: 113 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Gauche SRFIs
============(Will be) A collection of missing SRFI for Gauche. Following is the list of
supporting missing SRFIs. (and I hope these will be soon supported on Gauche.)- SRFI-69: Basic hash tables
Requirements
------------Gauche 0.9.5_pre1 (to use comparator)
To use as R7RS library
----------------------This library itself doesn't provide R7RS style library so you need to create
files something like this:srfi/69.scm
And it's content must be like this (depends on the SRFI):
```
(define-module srfi.69 (extend srfi-69))
```