mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 20:14:45 +00:00
8 lines
80 B
Python
8 lines
80 B
Python
p = (1, 2)
|
|
assert p.0 == 1
|
|
|
|
q = (1, True)
|
|
assert q.1
|
|
|
|
i, j = 0, 1
|
|
assert i == 0
|