mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
17 lines
485 B
Scheme
17 lines
485 B
Scheme
|
|
(define-library (chibi snow utils)
|
|
(export find-in-path find-sexp-in-path
|
|
write-to-string resource->bytevector
|
|
version-split version-compare version>? version>=?)
|
|
(import (scheme base)
|
|
(scheme file)
|
|
(scheme read)
|
|
(scheme write)
|
|
(scheme process-context)
|
|
(srfi 1)
|
|
(chibi io)
|
|
(chibi net http)
|
|
(chibi pathname)
|
|
(chibi string)
|
|
(chibi uri))
|
|
(include "utils.scm"))
|