Files
CMLeonOS/LuaApps/testspeed.lua
2026-02-10 01:48:04 +08:00

7 lines
150 B
Lua

local loop = 100000000
os.timerstart()
for i = 1, loop do
-- Nothing
end
cost = os.timerstop()
print("Loop " .. loop .. ", cost " .. cost .. "s.")