脚本中的函数定义必须出现在文件的结尾。 请将 "thd" 函数定义后面的所有语句都移到第一个局部函数定义前面。
时间: 2024-05-13 14:18:18 浏览: 197
LVBOQI.zip_传递函数比
好的,可以将 "thd" 函数定义后面的所有语句都移到第一个局部函数定义前面,如下所示:
```
function main()
print("Hello World!")
local a = 10
local b = 20
local c = add(a, b)
print(c)
end
function add(x, y)
return x + y
end
function thd()
print("This is a local function.")
end
thd() -- 调用局部函数
main()
```
阅读全文