×
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

    Module:TestModule: Difference between revisions

    No edit summary
    No edit summary
    Line 3: Line 3:
    function p.range(frame)
    function p.range(frame)
    local result = "0"
    local result = "0"
    for var=1,tonumber(frame.args[1]) do
    for var=1,tonumber(frame.args[1])-1 do
    result = result .. "," .. tostring(var)
    result = result .. "," .. tostring(var)
    end
    end

    Revision as of 11:56, 11 July 2024

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

    local p = {}
    
    function p.range(frame)
    	local result = "0"
    	for var=1,tonumber(frame.args[1])-1 do
    		result = result .. "," .. tostring(var)
    	end
    	return result
    end
    
    return p