Jump to content

Module:Sandbox/Base

Unchecked
From Wikipedia

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

local p = {}
function p.hello(frame)
    local retStr=''
    
     for i=1,frame.args[1] do
       retStr=retStr..'\n\n' .. tostring(i).." "..frame.args[2]..' '..frame.args[3]
     end
     
    return retStr
end
return p