Difference between revisions of "Module:Sandbox"

From Story Lists
Jump to navigation Jump to search
Line 1: Line 1:
local function test ()
local p = {}
return "Hello World"
 
function p.hello( frame )
    return "Hello, world!"
end
end
return p

Revision as of 20:37, 17 April 2021

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

local p = {}

function p.hello( frame )
    return "Hello, world!"
end

return p