mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
13 lines
342 B
Scheme
13 lines
342 B
Scheme
|
|
(define-library (srfi 166 pretty)
|
|
(import (scheme base)
|
|
(scheme char)
|
|
(scheme write)
|
|
(chibi show shared)
|
|
(srfi 1)
|
|
(srfi 69)
|
|
(srfi 130)
|
|
(srfi 166 base)
|
|
(srfi 166 color))
|
|
(export pretty pretty-shared pretty-simply pretty-with-color)
|
|
(include "pretty.scm"))
|