Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Test: Difference between revisions

From MassiveCraft Wiki
No edit summary
No edit summary
Line 6: Line 6:


function p.delight()
function p.delight()
return "You're a delight."
return "You're a delight!"
end
end


return p
return p

Revision as of 06:35, 25 August 2015

Documentation for this module may be created at Module:Test/doc

local p = {}

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

function p.delight()
	return "You're a delight!"
	end

return p