jrsonnet
refs/commits
4944c9eb9e42
tests/go_builtin_benchmarks/foldl.jsonnet
1local input = std.makeArray(10000, function(i) 'xxxxx');23std.foldl(function(acc, value) acc + value, input, '')