mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
10 lines
226 B
Scheme
10 lines
226 B
Scheme
|
|
(define-library (srfi 39)
|
|
(export make-parameter parameterize)
|
|
(import (chibi))
|
|
(include-shared "39/param")
|
|
(cond-expand
|
|
(threads
|
|
(include "39/syntax.scm"))
|
|
(else
|
|
(include "39/syntax-no-threads.scm"))))
|