Module:Test: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}


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


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


return p
return p

Revision as of 06:47, 25 August 2015

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

local p = {}

function p.list()
	name = ""
	age = 0
	gender = ""
end



return p