mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
7 lines
160 B
Python
7 lines
160 B
Python
id x = x
|
|
|
|
ids = List.__call__(map(id, ["1", "2", "3"]))
|
|
ints = List.__call__(map(int, ["1", "2", "3"]))
|
|
|
|
assert ids == ["1", "2", "3"]
|
|
assert ints == [1, 2, 3]
|