mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-07 13:15:21 +00:00
10 lines
117 B
Python
10 lines
117 B
Python
p = (1, 2)
|
|
assert p.0 == 1
|
|
|
|
q = (1, True, "a")
|
|
assert q.1
|
|
assert q.2 == "a"
|
|
|
|
i, j = 0, 1
|
|
assert i == 0
|
|
assert j == 1
|