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:04, 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(arg)
	str = ""
	for e, m in pairs(arg) do
		str = str .. "โ†’ " .. e .. ": " .. m .. "</br>"
	end
	return str
end

return map_pro_box