Lua 的环境有两种: Lua 和 LuaJIT,为了速度,选择 LuaJIT,实行效率提升几十倍。LuaJIT 对应的是 Lua5.1 的语法。
安装luaJIT
去官方 http://luajit.org/download.html 下载稳定版源码,解压后实行
1
2
3
make && sudo make install
luajit -v
LuaJIT 2.0.5 -- Copyright (C) 2005-2017 Mike Pall. http://luajit.org/
安装模块管理工具
1
2
brew tap mesca/luarocks
brew install luarocks51 --with-luajit
测试lua
新建文件 hellow.lua ,内容如下
1
print("Lua, Hello World")
1
luajit hellow.lua
本文网址: https://pylist.com/topic/160.html 转摘请注明来源