Fix indentation
This commit is contained in:
@@ -45,7 +45,9 @@ beamSplitRecursive start = do
|
|||||||
else
|
else
|
||||||
if grid !! fst start !! snd start == 'S' || grid !! fst start !! snd start == '.'
|
if grid !! fst start !! snd start == 'S' || grid !! fst start !! snd start == '.'
|
||||||
then beamSplitRecursive (fst start + 1, snd start)
|
then beamSplitRecursive (fst start + 1, snd start)
|
||||||
else if grid !! fst start !! snd start == 'x' then return ()
|
else
|
||||||
|
if grid !! fst start !! snd start == 'x'
|
||||||
|
then return ()
|
||||||
else do
|
else do
|
||||||
mark start
|
mark start
|
||||||
beamSplitRecursive (fst start, snd start - 1)
|
beamSplitRecursive (fst start, snd start - 1)
|
||||||
|
|||||||
Reference in New Issue
Block a user