about summary refs log tree commit diff
path: root/pkg/lang/vm/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/lang/vm/exec.go')
-rw-r--r--pkg/lang/vm/exec.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/lang/vm/exec.go b/pkg/lang/vm/exec.go
index 3a1ce36..c5b0539 100644
--- a/pkg/lang/vm/exec.go
+++ b/pkg/lang/vm/exec.go
@@ -1,7 +1,6 @@
 package vm
 
 import (
-	"fmt"
 	"jinx/pkg/lang/vm/code"
 	"jinx/pkg/lang/vm/mem"
 	"jinx/pkg/lang/vm/value"
@@ -496,9 +495,6 @@ func (vm *VM) execGenericBinaryOperation(op code.Op, fns typesToBinaryOperation)
 		}
 	}
 
-	fmt.Print(x)
-	fmt.Print(y)
-
 	res, err := binaryOp(x, y)
 	if err != nil {
 		return err