Jump to content

Module:Sandbox/Gechy/ogechi

From Wikipedia, the free encyclopedia
-- ogechi Outreachy Introduction to Lua in Wikipedia


local p = {}

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

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

return p