https://github.com/quinsmpang/NekoLua
A distribution of Lua customized to my liking.
https://github.com/quinsmpang/NekoLua
Last synced: about 2 months ago
JSON representation
A distribution of Lua customized to my liking.
- Host: GitHub
- URL: https://github.com/quinsmpang/NekoLua
- Owner: quinsmpang
- Created: 2016-04-08T12:46:55.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-11T03:48:06.000Z (over 10 years ago)
- Last Synced: 2024-07-24T04:33:23.140Z (over 1 year ago)
- Language: C
- Size: 36.9 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- my-awesome-lua - NekoLua - A distribution of Lua customized (Resources / Batteries Included)
README
NekoLua
=======
A distribution of Lua customized to my liking.
Created because LuaDist, LuaRocks, Distro packages all suck.
Features:
-LuaJIT.
-Strict Lua 5.2 Compat applied?
-....
Example module (prefer the second solution, if possible!):
```lua
local _M = {}
function _M.doThis()
print("K");
end
function _M.doThat()
_M.doThis();
end
return _M;
```
30log.lua is included as an alternative.
This software is licensed under CC0 1.0 Universal, which makes it Public Domain.
Installation:
Compile ./luadev/luajit-2.0/
It contains a patch that adds NekoLua to the Lua Path.
Do this to install NekoLua:
```
sudo ./install.sh
```
This will install NekoLua inside /opt/ at /opt/nekolua/