您的位置:首页 > 编程语言

好玩的代码

2015-12-02 16:27 274 查看
local index = 1
local function outer(arg)
local function iner()
index = index + 1
local tb = {"a","b"}
outer(tb)
end
if index < 10 then
printInfo("index = %s", index)
iner()
else
return
end
dump(arg, "arg")
end
outer("test")
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: