aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormryouse2023-06-06 21:56:37 -0400
committermryouse2023-06-06 21:56:37 -0400
commitb610fff5f3b94e8545f82c067076d194492223f7 (patch)
tree2905f507617d30b5a6eee8e5eae5f392e484307c
parent31cf242e9c972f0501e3700668c7dd0e461b212a (diff)
bugfix: don't push nil after print (?)
-rw-r--r--vm.d1
1 files changed, 0 insertions, 1 deletions
diff --git a/vm.d b/vm.d
index cb5dc49..69a16dc 100644
--- a/vm.d
+++ b/vm.d
@@ -583,7 +583,6 @@ class VM {
} else {
writefln("%s", printableValue(val));
}
- this.pushA(makeSeqValue(nil()));
break;
case OpCode.OP_JUMP_TO:
uint addr = this.readShort();