mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 11:56:50 +00:00
Update cheatsheets
This commit is contained in:
17
luac
Normal file
17
luac
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# luac
|
||||
|
||||
> Lua bytecode compiler.
|
||||
> More information: <https://www.lua.org>.
|
||||
|
||||
- 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}}`
|
||||
Reference in New Issue
Block a user