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