Module:Test

From ProleWiki, the proletarian encyclopedia
Revision as of 00:33, 24 June 2022 by Forte (talk | contribs) (More testing)
local p = {}
function p.test(frame)
	local args = frame:getParent().args
	for k,v in pairs(args) do
		local num = k:match('^parameter(%d+)$')
	return tostring(num)
	end
end
return p