Module:Foobar

From AIOWiki
Jump to navigation Jump to search

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

local p = {}
function p.recursive( frame )
    num = 0
    repeat
        num = num + 1
        return '{{#vardefine:C{{{' .. num * 3 .. '}}}|{{{S' .. num .. '|{{{' .. num * 3 - 2 .. '}}}}}}}}{{#vardefine:A{{{' .. num .. '}}}|{{{' .. num * 3 - 1 .. '}}}}}'
    until num == 51
end
return p