blob: 21af1970bbafde9f00085a6a0532ec07efe4b603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
local str = TEST.data
local sum = 0
local function test()
for i = 0, 10000 do
for j = 0, 10000 do
sum = sum + i + j
end
end
end
test()
return string.len(str), str
|