Module:Test: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
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 delightx!"
end
end


return p
return p

Revision as of 06:38, 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 delightx!"
	end

return p