Documentation for this module may be created at Module:Sandbox/Shriya06/doc
-- Shriya06 Google Code-in 2019, Introduction to Lua in Wikipedia
-- Working with modules in Wikipedia
local p = {}
p.Hello = function(frame)
strName = frame.args.name or Shriya
return "Hello from Lua to my friend "
end
function p.hi( frame )
return "Hello, world!"
end
return p