1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-09 15:45:25 +02:00
tldr/pages/common/luac.md
2025-04-25 05:54:18 +03:00

12 lines
283 B
Markdown

# luac
> Lua bytecode compiler.
> More information: <https://www.lua.org/manual/5.4/luac.html>.
- 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}}`