Files
CMLeonOS/LuaApps/testspeed.lua

7 lines
150 B
Lua
Raw Permalink Normal View History

2026-02-10 01:48:04 +08:00
local loop = 100000000
os.timerstart()
for i = 1, loop do
-- Nothing
end
cost = os.timerstop()
print("Loop " .. loop .. ", cost " .. cost .. "s.")