mirror of
https://github.com/micropython/micropython.git
synced 2025-07-22 21:41:07 +02: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)
|
|
|