Jump to content

Module:Sandbox/Kephir

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Kephir (talk | contribs) at 09:57, 23 February 2013 (sandbox). 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)
return {
	argtest = function (frame)
		local result = ''
		for key, value in pairs(frame.args) do
			result = result .. key .. '=' .. value .. '<br/>'
		end
		return result
	end
}