diff options
| author | mryouse | 2023-06-06 21:56:37 -0400 |
|---|---|---|
| committer | mryouse | 2023-06-06 21:56:37 -0400 |
| commit | b610fff5f3b94e8545f82c067076d194492223f7 (patch) | |
| tree | 2905f507617d30b5a6eee8e5eae5f392e484307c | |
| parent | 31cf242e9c972f0501e3700668c7dd0e461b212a (diff) | |
bugfix: don't push nil after print (?)
| -rw-r--r-- | vm.d | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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(); |
