This commit is contained in:
CoolCu
2024-10-28 12:36:26 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ Operators
%= modulo and store %= modulo and store
<<= shift left and store <<= shift left and store
>>= shift right and store >>= shift right and store
&= bitwise and and store &= bitwise and store
^= bitwise exclusive or and store ^= bitwise exclusive or and store
|= bitwise or and store |= bitwise or and store
, separator as in ( y=x,z=++x ) , separator as in ( y=x,z=++x )

View File

@@ -120,7 +120,7 @@
| %= | modulo and store| | %= | modulo and store|
| <<= | shift left and store| | <<= | shift left and store|
| \>>= | shift right and store| | \>>= | shift right and store|
| &= | bitwise and and store| | &= | bitwise and store|
| ^= | bitwise exclusive or and store| | ^= | bitwise exclusive or and store|
| \|= | bitwise or and store| | \|= | bitwise or and store|
| , | separator as in ( y=x,z=++x )| | , | separator as in ( y=x,z=++x )|