Module:LuaTest

From FHX Wiki
Revision as of 07:55, 30 June 2024 by B4ttl3m4st3r (talk | contribs)

Documentation for this module may be created at Module:LuaTest/doc

-- https://www.mediawiki.org/wiki/Lua/Tutorial
-- https://www.mediawiki.org/wiki/Lua/Scripting
local p = {} -- p stands for package
function p.hello( frame )
    return "Hello, world!"
end

return p