mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 04:17:58 +01:00
luac: add page (#2391)
This commit is contained in:
parent
02753012bd
commit
63e8a3b7c4
1 changed files with 11 additions and 0 deletions
11
pages/common/luac.md
Normal file
11
pages/common/luac.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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}}`
|
Loading…
Reference in a new issue