mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +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
|
||||
|
||||
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.
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
;;;; code from Chibi Scheme's (chibi match) library. Which in
|
||||
;;;; turn was built using Alex Shinn's match.scm.
|
||||
;;;;
|
||||
(define-library (scheme cyclone match)
|
||||
(define-library (cyclone match)
|
||||
(import
|
||||
(scheme base)
|
||||
;(scheme write)
|
|
@ -5,7 +5,7 @@
|
|||
(cond-expand
|
||||
(cyclone
|
||||
(import
|
||||
(scheme cyclone match)
|
||||
(cyclone match)
|
||||
(scheme cyclone test)))
|
||||
(chibi
|
||||
(import
|
||||
|
|
Loading…
Add table
Reference in a new issue