Module:User:AryamanA/test

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is a private module sandbox of AryamanA, for his own experimentation. Items in this module may be added and removed at AryamanA's discretion; do not rely on this module's stability.


local export = {}
function export.show()
	data = {
		["m"] = {
			["a"] = {"a", "b", "c"},
			["b"] = {"q", "f", "g"},
		},
	}
	a = ""
	for val,arr in ipairs(data["m"]) do
		a = a .. arr
	end
	return a
end
return export