1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 15:35:27 +02:00

lua: add page (#1381)

This commit is contained in:
Starbeamrainbowlabs 2017-05-19 08:47:18 +01:00 committed by Waldir Pimenta
parent 1ff585c6fd
commit 93348478a1

15
pages/common/lua.md Normal file
View file

@ -0,0 +1,15 @@
# lua
> A powerful, light-weight embeddable programming language.
- Start an interactive Lua shell:
`lua`
- Execute a Lua script:
`lua {{script_name.lua}} {{--optional-argument}}`
- Execute a Lua expression:
`lua -e '{{print( "Hello World" )}}`