blob: d846c6ca84e934c8eb92c96a1e64faf670079d90 [file] [log] [blame]
utatane.tea@gmail.com0f8e0832016-03-30 16:34:30 +00001function test(str, count)
2{
3 return str.repeat(count);
4}
5
6for (var i = 0; i < 1e4; ++i)
7 test(' ', i);