Centos Shell 安装后启动时提示找不到 lua 模块的 libluajit-5.1.so.2 文件,具体提示信息:./nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or ...……
--01
--楼梯有n阶台阶 上楼可以一步上一节 也可以一步上两节 多少种走法
--递归求解
function Way(n)
local ans={}
if n==1 then
table.insert(ans,{1})
return ans
elseif n==2 then
local tmp1={1,1}
...……
本文翻译自 LUA官方文档
When a function is called, the list of arguments is adjusted to the length of the list of parameters, unless the function is a vararg function, which is indicated by three d ...……