From 589fd6b242b2a172b7ccb096a024f89f4b9408f7 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Fri, 17 Jan 2025 21:53:48 -0600 Subject: [PATCH] comment out debug.trace --- src/Instructions/IntInstructions.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instructions/IntInstructions.hs b/src/Instructions/IntInstructions.hs index 50399bf..d12ee6a 100644 --- a/src/Instructions/IntInstructions.hs +++ b/src/Instructions/IntInstructions.hs @@ -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}