Module:Test: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
(Undo revision 6855 by Ryciera (talk))
(Undo revision 6854 by Ryciera (talk))
Line 1: Line 1:
local p = {}
local p = {}


function p.list()
function p.hello()
name = ""
return "Hello, world!"
age = 0
gender = ""
end
end


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


return p
return p

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