Module:User:Isomorphyc/test-pron

Hello, you have come here looking for the meaning of the word Module:User:Isomorphyc/test-pron. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Isomorphyc/test-pron, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Isomorphyc/test-pron in singular and plural. Everything you need to know about the word Module:User:Isomorphyc/test-pron you have here. The definition of the word Module:User:Isomorphyc/test-pron will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Isomorphyc/test-pron, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local export = {}

function export.test(frame)
    local args = frame:getParent().args
	local word = args or mw.title.getCurrentTitle().text
	local data = mw.loadData('Module:User:Isomorphyc/test-pron/data')
	local txt = ""
	for i = 1,10 do		--I seem to be completely unable to do things the right way in Lua
		for j=1,10 do 
			txt = txt .. (data and (data and ( " e" .. i .. "p" .. j .. ". " .. data) or "") or "") 
		end
		txt = txt .. (data and " ; " or "")
	end
	return txt
	end

return export