Jump to content

Module:Sandbox/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Sorjam (talk | contribs) at 18:33, 1 August 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--[[
   Add your experimental module code here.
--]]
local map_pro_box = {}

function map_pro_box.show_derivates(frame)
	str = ""
	
	for i = 1, table.getn(frame.args) do
		str = str .. frame.args[i] .. " "
	end
	
	return str
end

return map_pro_box