Module:Test

From ProleWiki, the proletarian encyclopedia
Revision as of 00:28, 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
		a = k .. " = " .. v .. " & "
	return tostring(a)
	end
end
return p