📅  最后修改于: 2022-03-11 14:54:54.538000             🧑  作者: Mango
local function testFunc() -- Here, the built-in wait function is overwritten with a number wait = 1 print(wait)end testFunc() -- This will now trigger a runtime errorwait(1)