Jump to content

Module:Sandbox/IznoPublic

From Wikipedia, the free encyclopedia
local p = {} --p stands for package

function p.hello( frame )

	local pframe = frame:getParent()

	local first = pframe.args[1] or ""

	local user = pframe.args.username or "IznoPublic"

	-- {{{1}}} is {{{username|IznoPublic}}}

	return first .. " is " .. user

end

function p.greet()
	return "Greet"
end

return p