8
if STRICT then error('dir '..dir) end
11
dirToXY = function(dir)
12
if dir == 'up' or dir == 'down' then
14
elseif dir == 'left' or dir == 'right' then
17
error('bad direction')
20
dirToPosNeg = function(dir)
21
if dir == 'up' or dir == 'left' then
23
elseif dir == 'down' or dir == 'right' then
26
error('bad direction')