about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-07-26 03:52:25 +0200
committerMel <einebeere@gmail.com>2022-07-26 03:52:25 +0200
commit917e721ca612cdc5ba6b4b1ab3fc969d55b728b3 (patch)
treefb16e32a49722b45bf3894fdbebd5be77ffd66c3
parent41490ae52e3b1ff20980c5e0837d257043b3ca92 (diff)
downloadjinx-917e721ca612cdc5ba6b4b1ab3fc969d55b728b3.tar.zst
jinx-917e721ca612cdc5ba6b4b1ab3fc969d55b728b3.zip
Remove accidental print in exec
-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