Codex Gamicus
Advertisement

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

local p = {}

function p.bam()
    return "Bam! Me knows Lua! Sort of. Now to make use of this."
end

function p.stuff(frame)
	return "1: " .. frame.args[1] .. "; thatparam: " .. frame.args.thatparam .. ";"
end

function p.multiline()
	return "Testing...\n\nnew line"
end

return p
Advertisement