Index: single/X-LV-01.lua ================================================================== --- single/X-LV-01.lua +++ single/X-LV-01.lua @@ -19,5 +19,22 @@ ("尝试一下攻击表示与守备表示的区别\nM1:主要阶段1 BP:战斗阶段 M2:主要阶段2") --~ Debug.ShowHint --~ ("M1:主要阶段1 BP:战斗阶段 M2:主要阶段2") aux.BeginPuzzle() fun["开局说明"]() + + +local times = 100000000 + + +local start_time=os.clock() +for i=1, times do + a=10*0.1 +end +Debug.Message("* 时间: \n", os.clock()-start_time .. " s") + + +local start_time=os.clock() +for i=1, times do + a=10/10 + end +Debug.Message("/ 时间: \n", os.clock()-start_time .. " s")