Documentation for this module may be created at Module:Sandbox/ShahJahanIshaq19/doc
--Shah Jahan Ishaq Google Code-in 2019, Introduction to Lua in Wikipedia
--Working with modules
local p = {}
function p.hello( frame )
return "Hello, world!"
end
p.Hi = function(frame)
strName = frame.args.name or "Jimmy"
return "Hello from Lua to my friend " .. strName .. ".<br>"
end
return p