I think I have got it.

This commit is contained in:
sforman 2023-07-30 16:16:51 -07:00
parent d285d13290
commit 72c325c1f2
1 changed files with 3 additions and 3 deletions

View File

@ -271,9 +271,9 @@ 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` | | |
-------------------------------------------------- --------------------------------------------------