# SRFI 128 - Comparators (reduced) This repository hosts a reference implementation of SRFI 128 - Comparators (reduced). The full documentation for this SRFI can be found on the [SRFI Document Reference](http://srfi.schemers.org/srfi-128/). The repository hosts a complete implementation of the SRFI, running on [CHICKEN](http://call-cc.org) Scheme. ## File Description While this repository is primarily to provide a reference implementation of SRFI 128, it also currently serves as the base repository to host the library as a CHICKEN extension (egg). Thus, there are three files that are independent of the SRFI itself, and are as follows: `srfi-128.meta` : This file denotes metadata about the CHICKEN extension, such as author, license, and dependencies (and dependencies for tests). `srfi-128.setup` : This file tells the CHICKEN package manager (`chicken-install`) how to build the egg. `srfi-128.release-info` : Describes the URL / different releases of the CHICKEN extension. Additionally, the `tests/` directory has been added to accommodate the CHICKEN package manager (for running tests). Currently it provides a default test runner which merely includes the tests found in the `ilists/` directory. ## License Provided under a single clause BSD license, Copyright (C) John Cowan 2016. See LICENSE for full details.