Module:Sandbox/Xinbenlv/LuaHelloWorld

Revision as of 21:10, 24 March 2019 by imported>Xinbenlv (// Edit via Wikiplus)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Example Usage edit source

Do it like this:

{{#invoke:Sandbox/Xinbenlv/LuaHelloWorld|sayhello|name=John}}

And it looks like this


Hello John!


---------- Module:Sandbox/XinbenlvHelloWorld ----------------
local p = {}

function p.sayhello(frame)
    return "Hello " .. frame.args.name .. "!"
end

return p