diff options
author | dan <[email protected]> | 2024-04-20 15:13:21 -0400 |
---|---|---|
committer | dan <[email protected]> | 2024-04-20 15:13:21 -0400 |
commit | 42b3f0eacf83327f95e15ec9486ea19e52a115de (patch) | |
tree | 338184cc77dc773b47340f77556008c03e6177a4 | |
parent | fe7d9b9482d8b48603973791519d3272dbfb22af (diff) | |
download | bizexp-42b3f0eacf83327f95e15ec9486ea19e52a115de.tar.gz bizexp-42b3f0eacf83327f95e15ec9486ea19e52a115de.tar.bz2 bizexp-42b3f0eacf83327f95e15ec9486ea19e52a115de.zip |
docs: add readme
-rw-r--r-- | readme.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..9db0060 --- /dev/null +++ b/readme.md @@ -0,0 +1,32 @@ +### Background + +This is a (largely abandoned) experiment in building a small "Excel-style" expressions language. The core of the language works, but it only has four keywords implemented (sum, any, all, average). + +Example expressions: + +``` +sum(8,9) +sum(8,99,67,average(sum(87,23),8,67)) +any(1,0,0,1,1) +any(0,2) +``` + +The quickest way to try the language is to use the REPL, the (incomplete) API and app were intended to become a way of using the language from the browser. + +The web app is a Elm app, which just displays one table at present. The API is more full-featured. The API allows for tables to be created, overwritten, downloaded, to have rows inserted, and allows for expressions to be evaluated with-or-without the context of a table of data. + +### Running the Programs + +Before starting, ensure cabal is installed and `cabal update` has been run. + +To start the REPL: `cabal run repl` + +To start the web server: `cabal run hs` + +The Elm webapp builds to a single `index.html`, which was been committed to this repo, and needs no further building. However, if you desire, you can download Elm from https://elm-lang.org/, and build the Elm client by doing `cd elm-client && elm make src/Main.elm`. + +The REPL can interpret files containing expressions if they are passed in over stdin: `cabal run repl < file-of-expressions`. + +### License + +Released into the public domain without any guarantee of any fitness for any purpose whatsoever. |