tldr/pages/common/lua.md

17 lines
297 B
Markdown
Raw Normal View History

2017-05-19 08:47:18 +01:00
# lua
> A powerful, light-weight embeddable programming language.
2019-06-05 08:55:57 +01:00
> More information: <https://www.lua.org>.
2017-05-19 08:47:18 +01:00
- Start an interactive Lua shell:
`lua`
- Execute a Lua script:
`lua {{path/to/script.lua}} {{--optional-argument}}`
2017-05-19 08:47:18 +01:00
- Execute a Lua expression:
`lua -e '{{print("Hello World")}}'`