Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ktakashi/gauche-srfis

Collection of missing SRFIson Gauche
https://github.com/ktakashi/gauche-srfis

Last synced: 13 days ago
JSON representation

Collection of missing SRFIson Gauche

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))
```