function tell(num,...)
print("value of implicit table:",arg)
--print("value of implicit table:",...)
select(1,arg)
--select(1,...)
end
tell(12,43,12,55)
为什么...
在表达式中使用会导致arg
值为
例如nil
with print("value of implicit table:",...)
or select(1,...)
?