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

local p = {}

function p.hello( frame )
    x = 3
    if x == 0 then
        return tostring(x)
    else
        return tostring(x * fact(x-1))
    end
end

return p