Module:Sandbox/Frietjes

This is an old revision of this page, as edited by Frietjes (talk | contribs) at 20:55, 14 March 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.data(frame)
	local status_letters = 'ACDEGHOPQRTXYZ'
	res = ''
	for m in mw.text.gsplit(status_letters) do
		res = res .. '+' .. m .. '+'
	end
	return res
end

return p