mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
9 lines
432 B
Scheme
9 lines
432 B
Scheme
|
|
(define-library (chibi snow interface)
|
|
(export warn info message die input input-password input-number yes-or-no?
|
|
restore-history save-history)
|
|
(import (scheme base) (scheme char) (scheme read) (scheme write)
|
|
(scheme file) (scheme process-context) (srfi 1)
|
|
(chibi config) (chibi filesystem) (chibi pathname)
|
|
(chibi show) (chibi stty) (chibi term edit-line))
|
|
(include "interface.scm"))
|