当前位置 : 主页 > 网络编程 > lua >

在Lua函数中引入的(…)版本作为参数?

来源:互联网 收集:自由互联 发布时间:2021-06-23
这是我能想象到的最简单的例子: function NewPrint(...) print("printed:", ...)endNewPrint("Hi") 请注意,我实际上没有做过Lua一段时间,我可能错过了一些语法. 按照 Lua.org documentation,它是Lua 5.1. Lua 5
这是我能想象到的最简单的例子:

function NewPrint(...)
    print("printed:", ...)
end

NewPrint("Hi")

请注意,我实际上没有做过Lua一段时间,我可能错过了一些语法.

按照 Lua.org documentation,它是Lua 5.1.

Lua 5.1 was released on 21 Feb 2006. Its main new features were a new module system, incremental garbage collection, new mechanism for varargs, new syntax for long strings and comments, mod and length operators, metatables for all types, new configuration scheme via luaconf.h, and a fully reentrant parser.

网友评论