Compare commits

..

No commits in common. "82e7b181ec1b0a2df4d76ca529b4736c9e56383b" and "ae0fa4026122a8fdf3b7f96693c9eea162b2533a" have entirely different histories.

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> <evaluate left>
DUP DUP
JUMP_IF_FALSE #2 # skip POP and <evaluate right> JUMP_IF_FALSE 2 # skip POP and <evaluate right>
POP POP
<evaluate right> <evaluate right>
end: end:
@ -241,7 +241,7 @@ end:
``` ```
<evaluate left> <evaluate left>
DUP DUP
JUMP_IF_TRUE #2 # skip POP and <evaluate right> JUMP_IF_TRUE 2 # skip POP and <evaluate right>
POP POP
<evaluate right> <evaluate right>
end: end:

View File

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