mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-03 22:53:27 +02:00
16 lines
326 B
Markdown
16 lines
326 B
Markdown
# lua
|
|
|
|
> Een krachtige, lichtgewicht en embeddable programmeertaal.
|
|
> Meer informatie: <https://www.lua.org/manual/5.4/lua.html>.
|
|
|
|
- Start een interactieve Lua-shell:
|
|
|
|
`lua`
|
|
|
|
- Voer een Lua-script uit:
|
|
|
|
`lua {{pad/naar/script.lua}} {{--optioneel-argument}}`
|
|
|
|
- Voer een Lua-expressie uit:
|
|
|
|
`lua -e '{{print("Hello World")}}'`
|