mirror of
https://github.com/TangentFoxy/Pop.Box.git
synced 2024-12-15 12:44:20 +00:00
8ea4b63878
git-subtree-dir: src/lib/middleclass git-subtree-split: 27a64f107e61532006030a6168e4fe6a71eee9a2
14 lines
180 B
Lua
14 lines
180 B
Lua
return function(title, f)
|
|
|
|
collectgarbage()
|
|
|
|
local startTime = os.clock()
|
|
|
|
for i=0,10000 do f() end
|
|
|
|
local endTime = os.clock()
|
|
|
|
print( title, endTime - startTime )
|
|
|
|
end
|