diff --git a/pages/common/lua.md b/pages/common/lua.md new file mode 100644 index 0000000000..981f3536d9 --- /dev/null +++ b/pages/common/lua.md @@ -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" )}}`