From f41b30b9f2a0fb778d4683abeca07b11d48dfe1c Mon Sep 17 00:00:00 2001 From: Aidan Date: Mon, 31 May 2021 22:04:33 -0700 Subject: [PATCH] explanatory readme --- Readme.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Readme.md diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..91698c7 --- /dev/null +++ b/Readme.md @@ -0,0 +1,23 @@ +# Relish +Rusty Expressive LIsp SHell + +## Goals +Relish is a language meant to iterate on the ideas and designs that were tested with [SHS](https://gitlab.com/whom/shs). Relish acts as both as a high level scripting language and as a system shell. This language is meant to be practical for administrators and power users. Similar technologies include Python, Bash, and Racket. + +## Current Status +Current master contains the datatypes and type system used by the language interpreter, as well as Lexing and Parsing routines. "Segments" (cons cells) are used for the abstract syntax tree. Tables are used for variable and function declarations. An evaluation routine is nearly complete. Tests are included for the Lexing and Parsing process and the function call routine. With the completion (and subsequent testing) of the evalution routine two more objectives will need to be completed: +- Shell interfzce that manages configurations and orchestrates a shell prompt +- Stdlib that implements the following functionality + - POSIX compliant shell with job control + - String manipulation + - File read/write functionality + - arithmetic operations + - control flow + - boolean comparisons and operations + - environment variable access + +## Compilation +`$ cargo build` + +## Testing +`$ cargo test`