mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-25 03:24:00 +02:00
326 B
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")}}'