1;;> Library implementing the edward command line interface.2;;> Most importantly, this library is responsible for parsing3;;> the command line options mandated by [POSIX][ed options]4;;> and afterward starts the read-eval-print loop of the editor.5;;>6;;> [ed options]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/ed.html#tag_20_38_0478(define-library (edward.cli)9 (import (scheme base)10 (scheme write)11 (scheme process-context)1213 (srfi 37)1415 (edward ed cmd)16 (edward ed posix)17 (edward ed editor))1819 (export edward-main)2021 (include "cli.scm"))