Module:FunctionData

There are no reviewed versions of this page, so it may not have been checked for adherence to standards.

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

function test( a )
	return a + 2;
end

local my_array = {
	['Bob'] = test,
	['Joe'] = 'Name'
	};