Module:Credits: Difference between revisions

From Videogame Morgue File

(Created page with "local p = {}; p.credits = function( frame ) local str = "Hello World!" return str end")
 
No edit summary
Line 5: Line 5:
     return str
     return str
end
end
return p

Revision as of 12:36, 14 May 2021

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

local p = {};

p.credits = function( frame )
    local str = "Hello World!"
    return str
end

return p