dd5d7c86d2
This can be enforced by pre-commit, but correct it separately to make it easier to review.
11 lines
88 B
Python
11 lines
88 B
Python
# test assignments
|
|
|
|
a = 1
|
|
print(a)
|
|
|
|
a = b = 2
|
|
print(a, b)
|
|
|
|
a = b = c = 3
|
|
print(a, b, c)
|