mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
11 lines
410 B
Scheme
11 lines
410 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
|
|
tabular columnar show-columns wrapped wrapped/list wrapped/char
|
|
justified line-numbers from-file)
|
|
(include "column.scm"))
|