luac: add page (#2391)

italian
Matúš Ferech 2018-10-09 12:12:07 +02:00 committed by Agniva De Sarker
parent 02753012bd
commit 63e8a3b7c4
1 changed files with 11 additions and 0 deletions

11
pages/common/luac.md Normal file
View 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}}`