Module:User:diprestonus/sandbox/la-declensionList

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


local export = {}

function export.show(frame)
	local out = {}
	for i, function_name in ipairs(frame.args) do
		local func = export or error("No exported function " .. function_name)
--		xpcall(function()
--			if function_name == "number_of_scripts" then
--				out = func(frame, 3)
--			else
		out = function_name 
					--func(frame)
		err('test')
		mw.log('test')
--			end
--		end, function (err)
--			mw.addWarning("Error running export." .. function_name .. ":\n" .. tostring(err) .. "\n" .. debug.traceback())
--		end)
	end

	return table.concat(out, "\n")
end

return export