mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 04:55:04 +02:00
Added comment header
This commit is contained in:
parent
279d99b373
commit
2b533fd2a2
1 changed files with 9 additions and 3 deletions
|
@ -1,9 +1,15 @@
|
||||||
(define-library (match-test-lib)
|
;;;; Cyclone Scheme
|
||||||
|
;;;; https://github.com/justinethier/cyclone
|
||||||
|
;;;;
|
||||||
|
;;;; This module provides a hygienic pattern matcher based on
|
||||||
|
;;;; code from Chibi Scheme's (chibi match) library. Which in
|
||||||
|
;;;; turn was built using Alex Shinn's match.scm.
|
||||||
|
;;;;
|
||||||
|
(define-library (scheme cyclone match)
|
||||||
(import
|
(import
|
||||||
(scheme base)
|
(scheme base)
|
||||||
(scheme write)
|
;(scheme write)
|
||||||
)
|
)
|
||||||
;(chibi) (import (chibi) (scheme base) (scheme write))
|
|
||||||
;(export match match-lambda match-lambda* match-let match-letrec match-let*)
|
;(export match match-lambda match-lambda* match-let match-letrec match-let*)
|
||||||
(export
|
(export
|
||||||
match-syntax-error
|
match-syntax-error
|
||||||
|
|
Loading…
Add table
Reference in a new issue