This commit is contained in:
sforman 2023-07-30 16:14:52 -07:00
parent e9cee15c64
commit d285d13290
1 changed files with 4 additions and 4 deletions

View File

@ -270,10 +270,10 @@ dialect of Joy are defined in terms of these:
| op | Logical (Boolean) | Bitwise (Ints) | Short-Circuiting Combinators | | op | Logical (Boolean) | Bitwise (Ints) | Short-Circuiting Combinators |
|-----|-------------------|----------------|------------------------------| |-----|-------------------|----------------|------------------------------|
| AND | /\ | && | and | | AND | `/\` | `&&` | `and ` |
| OR | \\/ | \|\| | or | | OR | `\\/` | `\|\|` | `or` |
| XOR | _\\/_ | xor | | | XOR | `\_\\/_` | `xor` | |
| NOT | not | ~ | | | NOT | `not` | | |
-------------------------------------------------- --------------------------------------------------