Locrian is a simple embeddable functional scripting language with a tiny, optional standard library. It includes:
- ---
A few examples:
```json
// Logic
if(eq(1, 1), 'add(6, 4), 'add(2, 2)) // 10
// Functions through quoting
let(
{
},
'call(myFn, [2, 2])
) // 4
```