Module:LuaExample
From A Wiki in the Desert
Documentation for this module may be created at Module:LuaExample/doc
local p = {} --p stands for package
function p.hello( frame )
return "Hello, world! "..frame.args[1]
end
return p