×
Create a new article
Write your page title here:
We currently have 2,839 articles on YumeWiki. Type your article name above or click on one of the titles below and start writing!



    YumeWiki
    2,839Articles
    Revision as of 12:20, 11 July 2024 by Reas (talk | contribs)

    Documentation for this module may be created at Module:TestModule/doc

    local p = {}
    
    function p.table(frame)
    	local entries = frame.args[1]
    	--[[local result = "0"
    	for var=1,tonumber(frame.args[1])-1 do
    		result = result .. "," .. tostring(var)
    	end
    	return result]]--
    	return '{{#tag:pre|' .. entries .. '}}'
    end
    
    return p