Skip to content

Commit c54656e

Browse files
committed
Remove trailing spaces.
1 parent e8e5091 commit c54656e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2019/05.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ operationFromNumber 4 = Just Out
3636
operationFromNumber 5 = Just JmpT
3737
operationFromNumber 6 = Just JmpF
3838
operationFromNumber 7 = Just Less
39-
operationFromNumber 8 = Just Eql
39+
operationFromNumber 8 = Just Eql
4040
operationFromNumber 99 = Just Done
4141
operationFromNumber _ = Nothing
4242

@@ -118,7 +118,7 @@ applyInstruction (Instruction op modes) (Context mem fptr ins outs) = do
118118
let newMem = setMemory dst val mem
119119
pure (Context newMem (fptr + 4) ins outs)
120120

121-
execute :: Context -> Maybe Context
121+
execute :: Context -> Maybe Context
122122
execute ctx@(Context mem fptr ins outs) = do
123123
instruction <- instructionAt fptr mem
124124
case op instruction of

0 commit comments

Comments
 (0)