mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-01 06:53:52 +02:00
17 lines
326 B
Markdown
17 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")}}'`
|