mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 03:27:01 +00:00
7 lines
150 B
Lua
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.") |