Module:Alex test
Revision as of 13:23, 21 January 2015 by Mediawiki>Shirayuki (Reverted edits by 217.33.39.10 (talk) to last revision by Alex brollo)
Documentation for this module may be created at Module:Alex test/doc
local p = {}
function p.hello(frame)
local a1=frame.args[1]
local a2=frame.args[2]
return 'Hello ' .. a1 .. " " .. a2
end
return p