Module:Test: Difference between revisions

From Resonite Wiki
mNo edit summary
mNo edit summary
Line 6: Line 6:


function p.ProtoFlux( frame )
function p.ProtoFlux( frame )
  return table.toString(frame.args);
  return table.tostring(frame.args);
end
end


return p
return p

Revision as of 01:17, 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 table.tostring(frame.args);
end

return p