jsonata 0.0.0

An (incomplete) implementation of JSONata in Rust
Documentation
{
    "expr": "[[$], [$reverse($)], [$]]",
    "data": [
        1,
        2,
        3
    ],
    "bindings": {},
    "result": [
        [
            1,
            2,
            3
        ],
        [
            3,
            2,
            1
        ],
        [
            1,
            2,
            3
        ]
    ]
}