Compare commits

...

2 Commits
main ... tweaks

2 changed files with 3 additions and 3 deletions

View File

@ -231,7 +231,7 @@ All comparison operations pop two values, compare, push boolean result.
```
<evaluate left>
DUP
JUMP_IF_FALSE 2 # skip POP and <evaluate right>
JUMP_IF_FALSE #2 # skip POP and <evaluate right>
POP
<evaluate right>
end:
@ -241,7 +241,7 @@ end:
```
<evaluate left>
DUP
JUMP_IF_TRUE 2 # skip POP and <evaluate right>
JUMP_IF_TRUE #2 # skip POP and <evaluate right>
POP
<evaluate right>
end:

View File

@ -1,6 +1,6 @@
{
"name": "reefvm",
"module": "src/index.ts",
"exports": "./src/index.ts",
"type": "module",
"scripts": {
"check": "bunx tsc --noEmit"