Jump to content

Module:Ru Paul's Drag Race tables

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Wugapodes (talk | contribs) at 00:04, 11 July 2020 (for loop skeleton to check order of args). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {} --p stands for package

function p.main( frame )
    templateFrame = frame:getParent()
    ret = ''
    for k, v in pairs( templateFrame.args ) do
    		ret = ret .. k .. ' = ' .. v .. "\n"
    end
    return ret
end

return p