'(' expected near '.'
作者:互联网
报错内容
.\module.lua:10: '(' expected near '.'
stack traceback:
[C]: ?
[C]: in function 'require'
.\testModule.lua:2: in main chunk
[C]: ?
error:在定义私有的函数的时候不需要写module
错:
local function module.func1()
print("这是私有函数")
end
正确的:
local function func1()
print("这是私有函数")
end
标签:function,end,私有,module,lua,near,expected 来源: https://www.cnblogs.com/yangkaifei/p/16518719.html