Module:TestMod: Difference between revisions

From Hazeron Wiki
Jump to navigation Jump to search
(Basic test module to see if Lua even works)
(No difference)

Revision as of 11:49, 17 April 2024

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