1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:42:08 +02:00
tldr/pages/common/lua.md
2021-04-26 08:19:04 -03:00

16 lines
296 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" )}}'`