imported>Xinbenlv
// Edit via Wikiplus
 
(No difference)

Latest revision as of 21:10, 24 March 2019

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