1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-25 03:24:00 +02:00
tldr/pages.nl/common/lua.md
2025-08-23 07:01:21 +02:00

326 B

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")}}'