mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:22:10 +02:00
11 lines
219 B
Markdown
11 lines
219 B
Markdown
# luac
|
|
|
|
> Lua bytecode compiler.
|
|
|
|
- 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}}`
|