**Is your feature request related to a problem? Please describe.** Хочу совмещать операции с присваиванием. AS-IS ``` i = i + 1 arr = arr ++ [x] ``` **Describe the solution you'd like** TO-BE ``` i += 1 arr ++= [x] ```
Is your feature request related to a problem? Please describe.
Хочу совмещать операции с присваиванием.
AS-IS
Describe the solution you'd like
TO-BE