Jump to content

Module:Sandbox/GKFX

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by GKFX (talk | contribs) at 22:19, 11 October 2021 (Attempt solution to nowiki problems.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

p.echo_args = function(frame)
	local result = {}
	for _, str in ipairs(frame.args) do
		result.append(str)
	end
	return table.concat(result, '|')
end