comment out debug.trace

This commit is contained in:
Rowan Torbitzky-Lane 2025-01-17 21:53:48 -06:00
parent 9c018ae96e
commit 589fd6b242

View File

@ -1,7 +1,7 @@
module Instructions.IntInstructions where
import State
import Debug.Trace
-- import Debug.Trace
instructionIntAdd :: State -> State
instructionIntAdd state@(State {int = (i1 : i2 : is)}) = state {int = i2 + i1 : is}