I think we need the #2 in there?

This commit is contained in:
Corey Johnson 2025-10-10 15:33:41 -07:00
parent 81973541af
commit 82e7b181ec

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: