1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-01 06:53:52 +02:00
tldr/pages.nl/common/lua.md

17 lines
326 B
Markdown
Raw Normal View History

2025-08-23 05:01:21 +00:00
# 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")}}'`