Παράδειγμα module Lua που περιέχει μία μόνο λειτουργία.

Χρήση Επεξεργασία

hello Επεξεργασία

  • {{#invoke:example|hello}} → Γειά σου κόσμε!

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