mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
8 lines
86 B
Python
8 lines
86 B
Python
p = (1, 2)
|
|
assert p.0 == 1
|
|
|
|
q = (1, 1.0)
|
|
assert q.1 == 1.0
|
|
|
|
i, j = 0, 1
|
|
assert i == 0
|