Module:TestMod

From Hazeron Wiki
Revision as of 11:49, 17 April 2024 by Celarious (talk | contribs) (Basic test module to see if Lua even works)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Basic test Lua module, can be invoked with {{#invoke: TestMod|FunctionName|arg1|arg2|etc ...}}


local p = {} --p stands for package

function p.hello( frame )
    return "Hello, world!"
end

return p