1;;> This library provides various generic utility procedures.23(define-library (edward.util)4 (import (scheme base)5 (scheme write)6 (scheme file)7 (scheme process-context)89 (srfi 1)1011 (only (chicken port) terminal-port? terminal-size)12 (only (chicken io) read-lines))1314 (export inc dec id alist-values fprintln println empty-string?15 pad-string string->human-readable path-join user-home16 count-bytes lines->port port->lines)1718 (include "util.scm"))