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 17:38, 1 August 2017 (Created page with '--Add your experimental module code here. -- local map_pro_box = {} function map_pro_box.show_derivates(...) str = "" for e, m in ipair(arg) do str...'). 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)
--[[
   Add your experimental module code here.
--]]
local map_pro_box = {}

function map_pro_box.show_derivates(...)
	str = ""
	for e, m in ipair(arg) do
		str = str + "→ " + e + ": " + m + "</br>"
	end
	return str
end

return map_pro_box