git.delta.rocks / jrsonnet / refs/commits / 36af281ff0ca

difftreelog

source

tests/cpp_benchmarks/bench.07.jsonnet157 Bsourcehistory
1local f2(f) = function(x) f(f(x));2local id(x) = x;34local slowId = std.makeArray(20, function(i) if i == 0 then id else f2(slowId[i - 1]));56slowId[15](42)