locrian 0.2.1

A simple embeddable functional programming language.
Documentation
# locrian

Locrian is a simple embeddable functional scripting language with a tiny, optional standard library. It includes:

- JSON-like syntax for values (objects, arrays, etc.)
- Lisp-like quoting for first-class functions
- Pure functional behavior
- Extremely simple syntax

A few examples:

```js
use(["num", "bool"], '[
    let(
    {
        "myFn": 'add($0, $1)
    },
    'myFn(2, 2)
    ), // 4
    // Logic
    if(eq(1, 1), 'add(6, 4), 'add(2, 2)) // 10
])
let(
  {
    "myFn": 'add($0, $1)
  },
  'myFn(2, 2)
) // 4
```