jsonata 0.0.0

An (incomplete) implementation of JSONata in Rust
Documentation
1
2
3
4
5
6
{
    "expr": "(  $factorial := function($n){(    $iter := function($n, $acc) {      $n = 0 ? $acc : $iter($n - 1, $n * $acc)    };    $iter($n, 1)  )};  $factorial(150)) ",
    "dataset": null,
    "bindings": {},
    "result": 5.7133839564458575e+262
}