mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
6 lines
195 B
Scheme
6 lines
195 B
Scheme
|
|
(define-library (chibi channel)
|
|
(import (chibi) (srfi 9) (srfi 18))
|
|
(export Channel make-channel channel? channel-empty?
|
|
channel-send! channel-receive!)
|
|
(include "channel.scm"))
|