Μετάβαση στο περιεχόμενο

Module:Example

Ασό Βικιπαίδεια

Documentation for this module may be created at Module:Example/τεκμηρίωση

local p = {}
 
function p.hello()
    return "Χαίρε κόσμε!"
end

setmetatable(p, {
    quickTests = function ()
        if type(p.hello()) ~= 'string' then return false, 'υπήρξε ένα σφάλμα' end 
        return true
    end
} )
return p