mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-23 20:15:06 +02:00
10 lines
381 B
Scheme
10 lines
381 B
Scheme
|
|
(define-library (chibi show column)
|
|
(import (scheme base) (scheme char) (scheme file) (scheme write)
|
|
(srfi 1) (srfi 117) (srfi 130)
|
|
(chibi optional) (chibi show))
|
|
(export
|
|
call-with-output-generator call-with-output-generators
|
|
string->line-generator
|
|
columnar tabular wrapped wrapped/char justified line-numbers from-file)
|
|
(include "column.scm"))
|