Module:Test: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
local io = {}
local p = {}


name = "dfsdg"
name = "dfsdg"


function io.hello(frame)
function p.hello(frame)
name=frame.args.name
name=frame.args.name
return name
end
end


return io
return p

Revision as of 07:08, 25 August 2015

Documentation for this module may be created at Module:Test/doc

local p = {}

name = "dfsdg"

function p.hello(frame)
name=frame.args.name
return name
end

return p