mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
17 lines
295 B
Markdown
17 lines
295 B
Markdown
# lua
|
|
|
|
> A powerful, light-weight embeddable programming language.
|
|
> More information: <https://www.lua.org>.
|
|
|
|
- Start an interactive Lua shell:
|
|
|
|
`lua`
|
|
|
|
- Execute a Lua script:
|
|
|
|
`lua {{script_name.lua}} {{--optional-argument}}`
|
|
|
|
- Execute a Lua expression:
|
|
|
|
`lua -e '{{print( "Hello World" )}}`
|