git.delta.rocks / jrsonnet / refs/commits / 4874d05f66f9

difftreelog

source

tests/cpp_benchmarks/bench.08.jsonnet152 Bsourcehistory
1local fibnext = {2  a: super.a + super.b,3  b: super.a,4};5local fib(n) =6  if n == 0 then7    { a: 1, b: 1 }8  else9    fib(n - 1) + fibnext;1011fib(25)