Module:TableGenerator

Revision as of 02:53, 14 September 2024 by Sur (talk | contribs)

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

local p = {}

function p.generateTable(frame)
    local args = frame:getParent().args
    
    
    return #args
end

return p