You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/tests/performance/fornum_test1.lua

24 lines
293 B

local function x()
local j = 0
for i=2,1000000000 do
j = i
end
return j
end
if ravi then
ravi.compile(x)
end
if jit then
-- LuaJIT - warmup
x()
end
local t1 = os.clock()
local y = x();
local t2 = os.clock()
print(y)
assert(y == 1000000000.0)
print("time taken ", t2-t1);