Update readme.md

This commit is contained in:
Artemy 2023-12-27 19:39:18 +03:00
parent 7e0d3b0640
commit 6d8f10b23f

View file

@ -20,6 +20,7 @@
| `&&` | Left to Right | logical_and | ✅ |
| <code>\|\|</code> | Left to Right | logical_or | ✅ |
| `..` | Left to Right | range | ✅ |
| `?:` | Left to Right | ternary | ✅ |
| `=` `:=` `+=` `-=` `*=` `/=` `^=` `%=` | Right to Left | assign | ✅? |
| `,` | Left to Right | comma | ✅ |
| `?:` | Right to Left | ternary | ✅ |
| `=` `:=` `+=` `-=` `*=` `/=` `^=` `%=` | Right to Left | assign | ✅ |
| await yield | Right to Left | await_yield | ✅ |
| `,` | None | comma | ✅ |