环境搭建
windows lua下载地址: https://github.com/rjpcomputing/luaforwindows/releases
安装lua环境
打开以上文件,直接下一步即可。
Idea安装EmyLua插件
我的idea版本是2019.1.1
idea配置lua环境
file -> Project Structure -> SDKS ->
idea创建lua项目
- 创建项目,选择lua
- 创建Lua文件。
- 直接运行会报错,需要配置
- 测试
简单用法:
-- 声明变量
local key = 'aaa'
local limit = 2
local currentLimit = 1
if currentLimit + 1 > limit then
print("refuse")
return false
end
print("success")
return true