Module:Test: Difference between revisions

From Resonite Wiki
mNo edit summary
mNo edit summary
Line 3: Line 3:
function p.hello( frame )
function p.hello( frame )
     return "Hello, <b>world!</b>"
     return "Hello, <b>world!</b>"
end
function p.ProtoFlux( frame )
return frame.args;
end
end


return p
return p

Revision as of 01:13, 13 January 2024

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

local p = {}

function p.hello( frame )
    return "Hello, <b>world!</b>"
end

function p.ProtoFlux( frame )
 return frame.args;
end

return p