Documentation for this module may be created at Module:Sandbox/MD Abu Siyam/doc

--MD Abu Siyam, Google code-in, Introduction to lua in wikipedia
--Lua Task 2 - Working with modules

local p = {} 

function p.hello( frame )
    return "Hello, world!"
end

p.Hi = function(frame)
	strName = frame.args.name or "Jimbo"
	return "Hello from Lua to my friend " .. strName .. ".<br>"
end

return p