Module:Test: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
(Created page with "local p = {} function p.hello() return "Hello, world!" end return p")
 
No edit summary
Line 4: Line 4:
return "Hello, world!"
return "Hello, world!"
end
end
function p.delight()
return "You're a delight."
end


return p
return p

Revision as of 06:34, 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