1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:22:07 +02:00
tldr/pages/common/luac.md
2018-10-09 15:42:07 +05:30

219 B

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}}