Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jairo-litman committed Feb 17, 2024
2 parents d588c76 + 894fe13 commit 2923ff8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/code.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ const (

OpTrue // Push a true value to the stack
OpFalse // Push a false value to the stack
OpAnd // Pop the top two elements of the stack and perform a boolean AND, push the result to the stack

Check failure on line 76 in code/code.go

View workflow job for this annotation

GitHub Actions / build

other declaration of OpAnd
OpOr // Pop the top two elements of the stack and perform a boolean OR, push the result to the stack

Check failure on line 77 in code/code.go

View workflow job for this annotation

GitHub Actions / build

other declaration of OpOr

// Comparison Opcodes

Expand Down

0 comments on commit 2923ff8

Please sign in to comment.