Relocated library

This commit is contained in:
Justin Ethier 2019-06-19 13:18:48 -04:00
parent ad926f2245
commit b3e9c31d41
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# Match Library # Match Library
The `(scheme cyclone match)` library provides a hygienic pattern matcher, based on Alex Shinn's portable `match.scm`. The `(cyclone match)` library provides a hygienic pattern matcher, based on Alex Shinn's portable `match.scm`.
This is a full superset of the popular [match](http://www.cs.indiana.edu/scheme-repository/code.match.html) package by Andrew Wright, written in fully portable `syntax-rules` and thus preserving hygiene. This is a full superset of the popular [match](http://www.cs.indiana.edu/scheme-repository/code.match.html) package by Andrew Wright, written in fully portable `syntax-rules` and thus preserving hygiene.

View file

@ -5,7 +5,7 @@
;;;; code from Chibi Scheme's (chibi match) library. Which in ;;;; code from Chibi Scheme's (chibi match) library. Which in
;;;; turn was built using Alex Shinn's match.scm. ;;;; turn was built using Alex Shinn's match.scm.
;;;; ;;;;
(define-library (scheme cyclone match) (define-library (cyclone match)
(import (import
(scheme base) (scheme base)
;(scheme write) ;(scheme write)

View file

@ -5,7 +5,7 @@
(cond-expand (cond-expand
(cyclone (cyclone
(import (import
(scheme cyclone match) (cyclone match)
(scheme cyclone test))) (scheme cyclone test)))
(chibi (chibi
(import (import