关键字local 修饰局部函数
返回多值
local function calculate(a,b)
return a+b,a-b
end
local x1,x2=calculate(5,5)
print(x1 .. " " .. x2)
函数嵌套
略
返回函数
匿名函数
Lua基础(函数)
关键字local 修饰局部函数
返回多值
local function calculate(a,b)
return a+b,a-b
end
local x1,x2=calculate(5,5)
print(x1 .. " " .. x2)
函数嵌套
略
返回函数
匿名函数