Read Template:MultiTabs
local p = {} --p stands for package function GetTableLng(tbl) local getN = 0 for n in pairs(tbl) do getN = getN + 1 end return getN end function p.create( frame ) local int = GetTableLng(frame.args) return int end return p