Documentation for this module may be created at Module:Sandbox/Pomkonto456/doc
-- Lua Task 2 - Working with modules local p = {} function p.hello( frame ) return "Hello, world!" end p.Hi = function(frame) strName = frame.args.name return "Hello from Lua to my friend " .. strName .. ".<br>" end return p