mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 21:59:16 +02:00
Relocated library
This commit is contained in:
parent
ad926f2245
commit
b3e9c31d41
3 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||||
|
|
|
@ -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)
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue