mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 21:59:17 +02:00
12 lines
329 B
Scheme
12 lines
329 B
Scheme
|
|
(define-library (chibi snow utils)
|
|
(export copy-file call-with-temp-file call-with-temp-dir)
|
|
(import (scheme base)
|
|
(scheme file)
|
|
(scheme time)
|
|
(srfi 33)
|
|
(chibi filesystem)
|
|
(chibi pathname)
|
|
(chibi process)
|
|
(chibi snow interface))
|
|
(include "utils.scm"))
|