mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-24 18:41:07 +01:00
3 lines
110 B
Jsonnet
3 lines
110 B
Jsonnet
local n = 10000;
|
|
local text = std.join("", std.makeArray(n, function(x) "ab"));
|
|
std.strReplace(text, "a", "b") |