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:21, 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 e, m in pairs(frame) do
		str = str .. "โ†’ " .. e .. ": " .. tostring(table.getn(m[e])) .. "</br>"
	end
	return str
end

return map_pro_box