我正在用普通的Lua语言编写BASIC解释器,在编写SLEEP X函数时碰壁了。
我不是专家,但这里看起来没什么问题...
function s(time)
local time=tonumber(time)
if useSleep then sleep(time) elseif useWait then wait(time) else
--oh no
--we will try our best
local ct=os.time+time
repeat until(os.time>=ct)
end end
--test
s(5)
答案 0 :(得分:5)
您需要使用os.time
来致电os.time()
。
os.time
是功能。
os.time()
是它的结果。