tldr/pages/common/luac.md

13 lines
262 B
Markdown
Raw Normal View History

2018-10-09 11:12:07 +01:00
# luac
> Lua bytecode compiler.
2019-06-05 08:55:57 +01:00
> More information: <https://www.lua.org>.
2018-10-09 11:12:07 +01:00
- 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}}`