From 93348478a1f5788c9d78ee71a1ca118809554fd4 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 19 May 2017 08:47:18 +0100 Subject: [PATCH] lua: add page (#1381) --- pages/common/lua.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/common/lua.md 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" )}}`