软件管理器

This commit is contained in:
2026-02-10 01:48:04 +08:00
parent 350db3140d
commit 25c7326bb2
9 changed files with 264 additions and 2 deletions

7
LuaApps/testspeed.lua Normal file
View File

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