mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
12 lines
89 B
Python
12 lines
89 B
Python
# test assignments
|
|
|
|
a = 1
|
|
print(a)
|
|
|
|
a = b = 2
|
|
print(a, b)
|
|
|
|
a = b = c = 3
|
|
print(a, b, c)
|
|
|