加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.函数作为参数传递给函数.lua 213 Bytes
一键复制 编辑 原始数据 按行查看 历史
lanjin.wei 提交于 2022-04-24 09:36 . basic grammar
increment = function(num, step)
return num + step
end
function addByIncrement(num1, num2, step, increment)
return increment(num1, step) + increment(num2, step)
end
print(addByIncrement(1, 2, 3, increment))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化