mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 21:59:17 +02:00
9 lines
305 B
Scheme
9 lines
305 B
Scheme
|
|
(define-library (chibi loop)
|
|
(export loop in-list in-lists in-port in-file up-from down-from
|
|
listing listing-reverse appending appending-reverse
|
|
summing multiplying in-string in-string-reverse
|
|
in-vector in-vector-reverse)
|
|
(import (scheme))
|
|
(include "loop/loop.scm"))
|
|
|