Module:bananas

From Rhizome Artbase

Hello, world! on April 05, 2016


-- For unit tests, see [[Module:Bananas/tests]]
local p = {}
 
function p.hello()
    return "Hello, world! on April 05, 2016"
end

setmetatable(p, {
    quickTests = function ()
        if type(p.hello()) ~= 'string' then return false, 'there was an error' end 
        return true
    end
} )
return p