From c2d647a04fd2487f8e389b621d595b5380a45529 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Fri, 17 May 2019 13:27:48 -0400 Subject: [PATCH] Add a NEWS file. * NEWS: New file. --- NEWS | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 NEWS diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..51688e4 --- /dev/null +++ b/NEWS @@ -0,0 +1,16 @@ +* Noteworthy features of release 0.1 (????-??-??) + +Features of the shell + + - Sophisticated enough to be used to build Bash. + - Has a nice colorized prompt. + - Includes all of the POSIX-specified "special" built-ins expect for + 'times'. + - Includes about half of the POSIX-specified "regular" built-ins + (see 'gash/built-ins.scm' for details). + +Features of the programming interface + + - Parses Shell scripts into an AST. + - Provides a rudimentary interface for writing Shell-like Scheme + scripts.