imported>Szqecs
Undid revision 831399288 by Szqecs (talk)
 
(No difference)

Latest revision as of 12:00, 20 March 2018

Documentation for this module may be created at Module:Sandbox/Szqecs/L-rail/System/doc

return {
	['system'] = {'Bananas', 'Oranges'}
	,['Foo'] = {
		['line'] = {'Foo line'}
		,['colour'] = '000000'
		,['station'] =
		function (s)
			local t = {
			['Foo'] = {'Hi world', false}
			}
			return t[s] or {s, s .. ' station'}
		end
		,['leftToward'] = {'Left station'}
		,['rightToward'] = {'Right station'}
	}
	,['Bar'] = {
		['line'] = {'Bar line'}
		,['colour'] = '999999'
		,['station'] = function (s) return {s} end
		,['leftToward'] = {'Left station'}
		,['rightToward'] = {'Right station'}
	}
}