Module:Character Appearances: Difference between revisions

From fractalthorns wiki
Jump to navigation Jump to search
Created page with "local package = {} function p.test(frame) return "hi" end return package"
 
No edit summary
Line 1: Line 1:
local package = {}
local package = {}


function p.test(frame)
function package.test(frame)
     return "hi"
     return "hi"
end
end


return package
return package

Revision as of 22:28, 12 December 2023

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

local package = {}

function package.test(frame)
    return "hi"
end

return package