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
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