Module:OnshokoeseScript
Jump to navigation
Jump to search
Documentation for this module may be created at Module:OnshokoeseScript/doc
local p = {} -- Defines a variable p as an empty table, but *not* nil.
function p.main( frame ) -- This block defines the table element p["main"] as a function.
return "Hello world" -- The string result of the function.
end -- Ends the block defining the function object p["main"] (or p.main).
return p