Files
cheatsheet-tldr/tldr/lua
2025-04-26 00:18:47 +00:00

22 lines
410 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# lua
> A powerful, light-weight embeddable programming language.
> More information: <https://www.lua.org/manual/5.4/lua.html>.
- Start an interactive Lua shell:
`lua`
- Execute a Lua script:
`lua {{path/to/script.lua}} {{--optional-argument}}`
- Execute a Lua expression:
`lua -e '{{print("Hello World")}}'`