mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
3 lines
53 B
Python
3 lines
53 B
Python
[a, *b] = [1, 2, 3]
|
|
assert a == 1
|
|
assert b == [2, 3]
|