Module:FunctionData

From Wikipedia

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'
	};