mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
262 B
262 B
luac
Lua bytecode compiler. More information: https://www.lua.org.
- Compile a Lua source file to Lua bytecode:
luac -o {{byte_code.luac}} {{source.lua}}
- Do not include debug symbols in the output:
luac -s -o {{byte_code.luac}} {{source.lua}}